This commit is contained in:
2024-11-21 09:32:53 +05:00
parent 1cae800a66
commit 1729070b80
12 changed files with 425 additions and 160 deletions

View File

@@ -6,7 +6,7 @@
typedef i32 (*InstructionImplFunc_t)(VM* vm);
typedef struct Instruction {
const char* name;
cstr name;
InstructionImplFunc_t implementation;
} Instruction;