summaryrefslogtreecommitdiff
path: root/src/nb_vm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nb_vm.h')
-rw-r--r--src/nb_vm.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/nb_vm.h b/src/nb_vm.h
new file mode 100644
index 0000000..50666af
--- /dev/null
+++ b/src/nb_vm.h
@@ -0,0 +1,14 @@
+#ifndef NB_VM_H
+#define NB_VM_H
+
+typedef struct
+{
+ int pc;
+} NbVM;
+
+
+void nb_collect_garbage(NbVM* vm);
+
+
+
+#endif \ No newline at end of file