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
commit1399a471d317d9645bb01adf2c61c77fef6d78ba (patch)
treefea83b1a236b63bfbfa948c6c79c95a5ec7aa396 /mixlib/mix_vm_command.h
parent269e498bfcc6f46e578ebd69b9bdc67255f90aa7 (diff)
downloadmdk-1399a471d317d9645bb01adf2c61c77fef6d78ba.tar.gz
mdk-1399a471d317d9645bb01adf2c61c77fef6d78ba.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;