aboutsummaryrefslogtreecommitdiff
path: root/src/root.zig
blob: fc2c0dce0f65accfe63aea9d492e29f590573436 (plain)
1
2
3
4
5
6
7
8
9
10
const std = @import("std");
const testing = std.testing;

const opcodes = @import("opcodes.zig");
const parser = @import("parser.zig");

test {
    _ = opcodes;
    _ = parser;
}