diff options
Diffstat (limited to 'mixlib/mix_vm_command.h')
| -rw-r--r-- | mixlib/mix_vm_command.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/mixlib/mix_vm_command.h b/mixlib/mix_vm_command.h index 45e2c8c..6c60264 100644 --- a/mixlib/mix_vm_command.h +++ b/mixlib/mix_vm_command.h @@ -63,6 +63,14 @@ typedef enum {    MIX_CMD_CBP,			/* clear breakpoint at lineno */    MIX_CMD_SBPA,			/* set breakpoint at address */    MIX_CMD_CBPA,			/* clear breakpoint at address */ +  MIX_CMD_SBPR,			/* set breakpoint on register changed */ +  MIX_CMD_CBPR,			/* clear breakpoint on register changed */ +  MIX_CMD_SBPM,			/* set breakpoint on mem cell changed */ +  MIX_CMD_CBPM,			/* clear breakpoint on mem cell changed */ +  MIX_CMD_SBPC,			/* set breakpoint on comp flag changed */ +  MIX_CMD_CBPC,			/* clear breakpoint on comp flag changed */ +  MIX_CMD_SBPO,			/* set breakpoint on overflow toggled */ +  MIX_CMD_CBPO,			/* clear breakpoint on overflow toggled */    MIX_CMD_CABP,			/* clear all breakpoints */    MIX_CMD_WEVAL,		/* evaluate a w-expression */    MIX_CMD_W2D,			/* print word in decimal notation */ | 
