#include "debug.h" #include "vm.h" #include #include #include #include using namespace std; int main() { uint8_t bytecode[] = "\x00\x00\x00"; VM vm(bytecode, sizeof(bytecode)); vm.run(); printf("\n\n"); vm.status(); return 0; }