#include "../../../vm/vm.h"
#include <stdio.h>
int main() {
VM vm = {0};
while(step_vm(&vm)) {
// do stuff
}
printf("done\n");
return 0;