mpw/debugger/commands.h

27 lines
288 B
C
Raw Normal View History

2013-07-03 21:05:00 +00:00
#ifndef __debugger_commands__
#define __debugger_commands__
enum {
2013-07-03 22:03:46 +00:00
Help,
2013-07-03 21:05:00 +00:00
Print,
2013-07-04 04:29:09 +00:00
PrintRegisters,
2013-07-03 21:05:00 +00:00
Dump,
List,
Break,
TBreak,
Continue,
Step,
SetARegister,
SetDRegister,
SetXRegister,
};
struct Command {
bool valid;
int action;
uint32_t argc;
uint32_t argv[10];
};
#endif