mirror of https://github.com/PCSX2/pcsx2.git
17 lines
416 B
C
17 lines
416 B
C
// SPDX-FileCopyrightText: 2002-2025 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
|
|
#pragma once
|
|
|
|
struct tlbs;
|
|
|
|
extern void WriteCP0Status(u32 value);
|
|
extern void WriteCP0Config(u32 value);
|
|
extern void cpuUpdateOperationMode();
|
|
extern void WriteTLB(int i);
|
|
extern void UnmapTLB(const tlbs& t, int i);
|
|
extern void MapTLB(const tlbs& t, int i);
|
|
|
|
extern void COP0_UpdatePCCR();
|
|
extern void COP0_DiagnosticPCCR();
|