diff options
Diffstat (limited to 'src/root.zig')
-rw-r--r-- | src/root.zig | 10 |
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; +} |