fix fmtInstruction and .gitignore
This commit is contained in:
parent
607e58b7b5
commit
8cb37452fb
3 changed files with 6 additions and 1 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -17,3 +17,7 @@ zig-out/
|
||||||
/build/
|
/build/
|
||||||
/build-*/
|
/build-*/
|
||||||
/docgen_tmp/
|
/docgen_tmp/
|
||||||
|
|
||||||
|
*.tal
|
||||||
|
*.rom
|
||||||
|
*.rom.sym
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
|
||||||
const Uxn = @import("uxn.zig");
|
const Uxn = @import("uxn.zig");
|
||||||
|
// TODO combine with uxn.zig
|
||||||
const UxnFmt = @import("uxn-instructions.zig");
|
const UxnFmt = @import("uxn-instructions.zig");
|
||||||
|
|
||||||
pub fn main() !void {
|
pub fn main() !void {
|
||||||
|
|
|
@ -15,7 +15,7 @@ pub fn formatInstruction(
|
||||||
0x20 => try writer.writeAll("JCI"),
|
0x20 => try writer.writeAll("JCI"),
|
||||||
0x40 => try writer.writeAll("JMI"),
|
0x40 => try writer.writeAll("JMI"),
|
||||||
0x60 => try writer.writeAll("JSI"),
|
0x60 => try writer.writeAll("JSI"),
|
||||||
0x80, 0xA0 => try writer.writeAll("LIT"),
|
0x80, 0xA0, 0xC0, 0xE0 => try writer.writeAll("LIT"),
|
||||||
else => unreachable,
|
else => unreachable,
|
||||||
},
|
},
|
||||||
0x01 => try writer.writeAll("INC"),
|
0x01 => try writer.writeAll("INC"),
|
||||||
|
|
Loading…
Add table
Reference in a new issue