mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-29 15:49:31 +00:00
25 lines
264 B
C
25 lines
264 B
C
|
#ifndef __debugger_commands__
|
||
|
#define __debugger_commands__
|
||
|
|
||
|
enum {
|
||
|
Print,
|
||
|
Dump,
|
||
|
List,
|
||
|
Break,
|
||
|
TBreak,
|
||
|
Continue,
|
||
|
Step,
|
||
|
SetARegister,
|
||
|
SetDRegister,
|
||
|
SetXRegister,
|
||
|
};
|
||
|
|
||
|
struct Command {
|
||
|
bool valid;
|
||
|
int action;
|
||
|
uint32_t argc;
|
||
|
uint32_t argv[10];
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|