summaryrefslogtreecommitdiffhomepage
path: root/mixlib/mix_vm_command.h
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2001-07-21 21:14:05 +0000
committerJose Antonio Ortega Ruiz <jao@gnu.org>2001-07-21 21:14:05 +0000
commita566628d7992b62819f9cfff13baea83f4b1ab2e (patch)
tree6670145f59a663947073dabf33bb3d7970d8421e /mixlib/mix_vm_command.h
parent1e01128fa17c6ee41fe5c5c9891dfe4b3f0bbd6c (diff)
downloadmdk-a566628d7992b62819f9cfff13baea83f4b1ab2e.tar.gz
mdk-a566628d7992b62819f9cfff13baea83f4b1ab2e.tar.bz2
mem and register conditional breakpoints
Diffstat (limited to 'mixlib/mix_vm_command.h')
-rw-r--r--mixlib/mix_vm_command.h8
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 */