aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode/main.c
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-10-22 12:24:10 +0200
committerBad Diode <bd@badd10de.dev>2021-10-22 12:24:10 +0200
commit9286c148f601072dded92233a328a8867ff7ab0c (patch)
treeb3326e3c6b247b0e732cae41038ea30d341d272d /src/bytecode/main.c
parentd9474f1d7c0c6674179fd0f27cd1c084c8227ed5 (diff)
downloadbdl-9286c148f601072dded92233a328a8867ff7ab0c.tar.gz
bdl-9286c148f601072dded92233a328a8867ff7ab0c.zip
Add a stack for our VM
Diffstat (limited to 'src/bytecode/main.c')
-rw-r--r--src/bytecode/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode/main.c b/src/bytecode/main.c
index 9a81aaa..5081d95 100644
--- a/src/bytecode/main.c
+++ b/src/bytecode/main.c
@@ -8,7 +8,7 @@
8// Config. 8// Config.
9// 9//
10 10
11// #define DEBUG_TRACE_EXECUTION 11#define DEBUG_TRACE_EXECUTION
12 12
13#include "vm.h" 13#include "vm.h"
14#include "ops.h" 14#include "ops.h"