This commit is contained in:
SpookyDervish
2025-12-22 13:25:21 +11:00
parent b1d257168f
commit 897cee96b3
2 changed files with 1 additions and 2 deletions

View File

@@ -1,5 +1,4 @@
#include "vmbl.h"
#include "asm/tokenize.h"
#include <stdio.h>
#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;