Forgot to remove this one

This commit is contained in:
zongor 2025-09-09 21:16:33 -07:00
parent 770d9d56ff
commit 75ad08dae1
1 changed files with 0 additions and 11 deletions

View File

@ -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("> ");