aboutsummaryrefslogtreecommitdiff
path: root/vm/runtime.h
diff options
context:
space:
mode:
Diffstat (limited to 'vm/runtime.h')
-rw-r--r--vm/runtime.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/vm/runtime.h b/vm/runtime.h
index 1a03700..2986bda 100644
--- a/vm/runtime.h
+++ b/vm/runtime.h
@@ -52,10 +52,6 @@ typedef struct
} program;
} vm_t;
-#define VM_REG_BYTE(REG) ((REG)&0b11111111)
-#define VM_REG_HWORD(REG) ((REG)&0b11111111111111111111111111111111)
-#define VM_REG_WORD(REG) ((REG))
-
err_t vm_execute(vm_t *);
err_t vm_execute_all(vm_t *);