From 8cb37452fb9a05d4cb30a27616b75b098ed52d89 Mon Sep 17 00:00:00 2001 From: Jeeves Date: Tue, 4 Mar 2025 19:18:44 -0700 Subject: [PATCH] fix fmtInstruction and .gitignore --- .gitignore | 4 ++++ src/main.zig | 1 + src/uxn-instructions.zig | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f27e682..1663e29 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,7 @@ zig-out/ /build/ /build-*/ /docgen_tmp/ + +*.tal +*.rom +*.rom.sym diff --git a/src/main.zig b/src/main.zig index 6314510..5a7883e 100644 --- a/src/main.zig +++ b/src/main.zig @@ -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 { diff --git a/src/uxn-instructions.zig b/src/uxn-instructions.zig index 78317b1..41c1f64 100644 --- a/src/uxn-instructions.zig +++ b/src/uxn-instructions.zig @@ -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"),