diff --git a/src/arch/linux/main.c b/src/arch/linux/main.c index 3a55cb9..5833794 100644 --- a/src/arch/linux/main.c +++ b/src/arch/linux/main.c @@ -1,4 +1,3 @@ -#include "../../assembler.h" #include "../../test.h" #include "../../vm.h" #include "devices.h" @@ -52,17 +51,7 @@ void compileFile(const char *path, VM *vm) { fclose(f); } -bool test_fibonacci(VM *vm) { - Assembler zasm; - - while (step_vm(vm)); - return true; -} - void repl(VM *vm) { - - test_fibonacci(vm); - char line[1024]; for (;;) { printf("> ");