little stuff, release build brought up to date
[[Split portion of a mixed commit.]]
This commit is contained in:
parent
e4675d9616
commit
c0958be02c
23
x6502.h
23
x6502.h
|
@ -22,15 +22,20 @@
|
|||
|
||||
#include "x6502struct.h"
|
||||
|
||||
#ifdef FCEUDEF_DEBUGGER
|
||||
void X6502_Debug(void (*CPUHook)(X6502 *),
|
||||
uint8 (*ReadHook)(X6502 *, unsigned int),
|
||||
void (*WriteHook)(X6502 *, unsigned int, uint8));
|
||||
|
||||
extern void (*X6502_Run)(int32 cycles);
|
||||
#else
|
||||
void X6502_Run(int32 cycles);
|
||||
#endif
|
||||
//-----------
|
||||
//mbg 6/30/06 - some of this was removed to mimic XD
|
||||
//#ifdef FCEUDEF_DEBUGGER
|
||||
void X6502_Debug(void (*CPUHook)(X6502 *),
|
||||
uint8 (*ReadHook)(X6502 *, unsigned int),
|
||||
void (*WriteHook)(X6502 *, unsigned int, uint8));
|
||||
|
||||
//extern void (*X6502_Run)(int32 cycles);
|
||||
//#else
|
||||
//void X6502_Run(int32 cycles);
|
||||
//#endif
|
||||
void X6502_RunDebug(int32 cycles);
|
||||
#define X6502_Run(x) X6502_RunDebug(x)
|
||||
//------------
|
||||
|
||||
extern uint32 timestamp;
|
||||
extern X6502 X;
|
||||
|
|
Loading…
Reference in New Issue