28 lines
1.0 KiB
C++
28 lines
1.0 KiB
C++
#include "stdafx.h"
|
|
#include "SystemGlobals.h"
|
|
|
|
CN64System * g_System = nullptr;
|
|
CN64System * g_BaseSystem = nullptr;
|
|
CN64System * g_SyncSystem = nullptr;
|
|
CRecompiler * g_Recompiler = nullptr;
|
|
CMipsMemoryVM * g_MMU = nullptr; //Memory of the n64
|
|
CTLB * g_TLB = nullptr; //TLB Unit
|
|
CRegisters * g_Reg = nullptr; //Current Register Set attacted to the g_MMU
|
|
CNotification * g_Notify = nullptr;
|
|
CPlugins * g_Plugins = nullptr;
|
|
CN64Rom * g_Rom = nullptr; //The current rom that this system is executing.. it can only execute one file at the time
|
|
CN64Rom * g_DDRom = nullptr; //64DD IPL ROM
|
|
CN64Disk * g_Disk = nullptr; //64DD DISK
|
|
CAudio * g_Audio = nullptr;
|
|
CSystemTimer * g_SystemTimer = nullptr;
|
|
CTransVaddr * g_TransVaddr = nullptr;
|
|
CSystemEvents * g_SystemEvents = nullptr;
|
|
uint32_t * g_TLBLoadAddress = nullptr;
|
|
uint32_t * g_TLBStoreAddress = nullptr;
|
|
CDebugger * g_Debugger = nullptr;
|
|
uint8_t ** g_RecompPos = nullptr;
|
|
CMempak * g_Mempak = nullptr;
|
|
CRandom * g_Random = nullptr;
|
|
CEnhancements * g_Enhancements = nullptr;
|
|
|
|
int * g_NextTimer; |