diff --git a/src/main.c b/src/main.c index 8d07278..2be0106 100644 --- a/src/main.c +++ b/src/main.c @@ -1,5 +1,4 @@ #include "vmbl.h" -#include "asm/tokenize.h" #include #define ARRAY_SIZE(array) (sizeof(array) / sizeof(array[0])); @@ -17,7 +16,7 @@ int main() { VMBL_State vmblState = {}; VMBL_LoadExecutable(&vmblState, program, sizeof(program)); - //VMBL_SaveExecutable("fib.vmbl", program, sizeof(program)); + VMBL_SaveExecutable("fib.vmbl", program, sizeof(program)); VMBL_StartVM(&vmblState); return 0; diff --git a/vmbl b/vmbl index 2f8d27e..e1a9164 100644 Binary files a/vmbl and b/vmbl differ