From 75ad08dae10f7996d8305dddbece2fb35a627402 Mon Sep 17 00:00:00 2001 From: zongor Date: Tue, 9 Sep 2025 21:16:33 -0700 Subject: [PATCH] Forgot to remove this one --- src/arch/linux/main.c | 11 ----------- 1 file changed, 11 deletions(-) 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("> ");