Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc-extra / emu / rrgb / debugger.h
blobfb3c7cc9ccebd9a9967999b2019afcd7cb613abb
1 #ifndef __DEBUGGER_H
2 #define __DEBUGGER_H
4 typedef struct sregs mregs;
5 typedef struct sregs *pmregs;
7 struct sregs {
8 unsigned char *a, *f, *b, *c, *d, *e, *h, *l;
9 unsigned short *pc, *sp;
10 int *cpuRunning;
13 int enterDebugger( pmregs regs );
14 int getparams( char *string, int *start, int *end, int pc, int defoffset );
15 int setBreakpoint( unsigned int addr );
16 void printRegisters( pmregs regs );
17 int clearBreakpoint( unsigned int addr );
19 #endif