From 5202dfbb2646cfbfb585f1a00a079438010373e5 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Tue, 31 Oct 2023 21:28:19 +0000 Subject: Remove duplicated code --- vm/runtime.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'vm/runtime.h') 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 *); -- cgit v1.2.3-13-gbd6f