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
commit3114b7c719e74e961766a41b335f50dac14d9e79 (patch)
tree7c43991f350af105a2af6b4e6a920c62d6451f3e /mixlib/mix_vm_command.h
parentb5e6f0dc1f93f672ba29a364b4d9244d8639d482 (diff)
downloadmdk-3114b7c719e74e961766a41b335f50dac14d9e79.tar.gz
mdk-3114b7c719e74e961766a41b335f50dac14d9e79.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 */