24 lines
826 B
C++
24 lines
826 B
C++
#include "stdafx.h"
|
|
|
|
CN64System * g_System = NULL;
|
|
CN64System * g_BaseSystem = NULL;
|
|
CN64System * g_SyncSystem = NULL;
|
|
CRecompiler * g_Recompiler = NULL;
|
|
CMipsMemory * g_MMU = NULL; //Memory of the n64
|
|
CTLB * g_TLB = NULL; //TLB Unit
|
|
CRegisters * g_Reg = NULL; //Current Register Set attacted to the g_MMU
|
|
CNotification * g_Notify = NULL;
|
|
CPlugins * g_Plugins = NULL;
|
|
CN64Rom * _Rom = NULL; //The current rom that this system is executing.. it can only execute one file at the time
|
|
CAudio * _Audio = NULL;
|
|
CMemoryLabel * _Labels = NULL;
|
|
CSystemTimer * _SystemTimer = NULL;
|
|
CTransVaddr * _TransVaddr = NULL;
|
|
CSystemEvents * _SystemEvents = NULL;
|
|
DWORD * _TLBLoadAddress = NULL;
|
|
DWORD * _TLBStoreAddress = NULL;
|
|
|
|
int * _NextTimer;
|
|
|
|
|