Clock cleanup

This commit is contained in:
mpohoreski 2009-02-14 03:54:12 +00:00
parent 3139783a1f
commit 9eb2f444c3

View File

@ -42,8 +42,14 @@ extern DWORD g_dwCyclesThisFrame;
extern FILE* g_fh; // Filehandle for log file extern FILE* g_fh; // Filehandle for log file
extern bool g_bDisableDirectSound; // Cmd line switch: don't init DS (so no MB support) extern bool g_bDisableDirectSound; // Cmd line switch: don't init DS (so no MB support)
// TODO: Make g_CurrentPeripherals[MAX_SLOTS] = { CT_Empty }
extern UINT g_Slot4; // Mockingboard or Mouse in slot4 extern UINT g_Slot4; // Mockingboard or Mouse in slot4
// TODO: Move into: g_CurrentPeripherals[]
extern UINT g_uMouseInSlot4;
//extern UINT g_uClockInSlot4;
extern UINT g_uZ80InSlot5;
extern HANDLE g_hCustomRomF8; // NULL if no custom rom extern HANDLE g_hCustomRomF8; // NULL if no custom rom
enum eCPU {CPU_6502=1, CPU_Z80}; enum eCPU {CPU_6502=1, CPU_Z80};