aboutsummaryrefslogtreecommitdiff
path: root/src/root.zig
diff options
context:
space:
mode:
authorjjanzen <jjanzen@jjanzen.ca>2025-02-26 23:23:37 -0600
committerjjanzen <jjanzen@jjanzen.ca>2025-02-26 23:23:37 -0600
commit0c7ae37e3f482255c80796414b708c8bc9f6ee87 (patch)
tree43f539a08842b5d04bda4f25cbe5984ef388aa22 /src/root.zig
initial commit
Diffstat (limited to 'src/root.zig')
-rw-r--r--src/root.zig10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/root.zig b/src/root.zig
new file mode 100644
index 0000000..fc2c0dc
--- /dev/null
+++ b/src/root.zig
@@ -0,0 +1,10 @@
+const std = @import("std");
+const testing = std.testing;
+
+const opcodes = @import("opcodes.zig");
+const parser = @import("parser.zig");
+
+test {
+ _ = opcodes;
+ _ = parser;
+}