summaryrefslogtreecommitdiffhomepage
path: root/mixlib/mix_vm_command.h
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2001-07-07 20:46:57 +0000
committerJose Antonio Ortega Ruiz <jao@gnu.org>2001-07-07 20:46:57 +0000
commit64c981385b63006523ebafeb24bdf895ee290475 (patch)
tree826374a0f8640693018c0c92c0c43862df2ec5f7 /mixlib/mix_vm_command.h
parent3c7403c706d7ee3214409d17b555b1427a17e20e (diff)
downloadmdk-64c981385b63006523ebafeb24bdf895ee290475.tar.gz
mdk-64c981385b63006523ebafeb24bdf895ee290475.tar.bz2
timing command
Diffstat (limited to 'mixlib/mix_vm_command.h')
-rw-r--r--mixlib/mix_vm_command.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/mixlib/mix_vm_command.h b/mixlib/mix_vm_command.h
index b1c6839..40bb7e8 100644
--- a/mixlib/mix_vm_command.h
+++ b/mixlib/mix_vm_command.h
@@ -41,7 +41,11 @@ typedef enum {
MIX_CMD_HELP = 0, /* echo help message */
MIX_CMD_LOAD, /* load a mix program */
MIX_CMD_EDIT, /* edit mixal source */
+ MIX_CMD_PEDIT, /* print editor command */
+ MIX_CMD_SEDIT, /* set editor command*/
MIX_CMD_COMPILE, /* compile mixal source */
+ MIX_CMD_PASM, /* print compiler command */
+ MIX_CMD_SASM, /* set assembler command */
MIX_CMD_RUN, /* run a loaded program */
MIX_CMD_NEXT, /* run next instruction */
MIX_CMD_LOC, /* print location pointer */
@@ -62,7 +66,8 @@ typedef enum {
MIX_CMD_CABP, /* clear all breakpoints */
MIX_CMD_WEVAL, /* evaluate a w-expression */
MIX_CMD_W2D, /* print word in decimal notation */
- MIX_CMD_TRACE, /* enable/disable instruction traces */
+ MIX_CMD_TRACING, /* enable/disable instruction traces */
+ MIX_CMD_TIMING, /* enable/disable timing statistics */
MIX_CMD_INVALID, /* invalid command identifier */
} mix_vm_command_t;