fix fmtInstruction and .gitignore

This commit is contained in:
Jeeves 2025-03-04 19:18:44 -07:00
parent 607e58b7b5
commit 8cb37452fb
3 changed files with 6 additions and 1 deletions

4
.gitignore vendored
View file

@ -17,3 +17,7 @@ zig-out/
/build/
/build-*/
/docgen_tmp/
*.tal
*.rom
*.rom.sym

View file

@ -1,6 +1,7 @@
const std = @import("std");
const Uxn = @import("uxn.zig");
// TODO combine with uxn.zig
const UxnFmt = @import("uxn-instructions.zig");
pub fn main() !void {

View file

@ -15,7 +15,7 @@ pub fn formatInstruction(
0x20 => try writer.writeAll("JCI"),
0x40 => try writer.writeAll("JMI"),
0x60 => try writer.writeAll("JSI"),
0x80, 0xA0 => try writer.writeAll("LIT"),
0x80, 0xA0, 0xC0, 0xE0 => try writer.writeAll("LIT"),
else => unreachable,
},
0x01 => try writer.writeAll("INC"),