Remove duplicated code

This commit is contained in:
2023-10-31 21:28:19 +00:00
parent f7f566b106
commit 5202dfbb26
2 changed files with 0 additions and 8 deletions

View File

@@ -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 *);