done for now
This commit is contained in:
parent
9c84ed1f1a
commit
24ce4addff
1 changed files with 42 additions and 1 deletions
43
src/uxn.zig
43
src/uxn.zig
|
@ -712,9 +712,15 @@ test "op" {
|
|||
defer uxn.deinit(std.testing.allocator);
|
||||
|
||||
const rom = [_]u8{
|
||||
// op.inc
|
||||
0x01, 0x01, 0x01, 0x01,
|
||||
0x21, 0x21, 0x21, 0x21,
|
||||
0x00,
|
||||
|
||||
// op.pop
|
||||
0x02, 0x02, 0x02, 0x18,
|
||||
0x02, 0x02, 0x18, 0x22,
|
||||
0x22, 0x22, 0x38, 0x22,
|
||||
0x22, 0x38, 0x00,
|
||||
};
|
||||
@memcpy(uxn.mem.m[0x100 .. rom.len + 0x100], &rom);
|
||||
|
||||
|
@ -743,6 +749,41 @@ test "op" {
|
|||
try std.testing.expectEqual(0xffff, uxn.ws.pop(u16));
|
||||
_ = uxn.eval();
|
||||
try std.testing.expectEqual(0x0001, uxn.ws.pop(u16));
|
||||
|
||||
std.debug.print("op.pop\n", .{});
|
||||
uxn.ws.push(u16, 0x0e0f);
|
||||
uxn.ws.push(u16, 0x0c0d);
|
||||
uxn.ws.push(u16, 0x0a0b);
|
||||
uxn.ws.push(u16, 0x0e0f);
|
||||
uxn.ws.push(u16, 0x0c0d);
|
||||
uxn.ws.push(u16, 0x0a0b);
|
||||
uxn.ws.push(u16, 0x0e0f);
|
||||
uxn.ws.push(u16, 0x0c0d);
|
||||
uxn.ws.push(u16, 0x0a0b);
|
||||
uxn.ws.push(u16, 0x0c0d);
|
||||
uxn.ws.push(u16, 0x0a0b);
|
||||
uxn.ws.push(u8, 0x0c);
|
||||
uxn.ws.push(u8, 0x0b);
|
||||
uxn.ws.push(u8, 0x0a);
|
||||
uxn.ws.push(u8, 0x0c);
|
||||
uxn.ws.push(u8, 0x0b);
|
||||
uxn.ws.push(u8, 0x0a);
|
||||
uxn.ws.push(u8, 0x0c);
|
||||
uxn.ws.push(u8, 0x0b);
|
||||
uxn.ws.push(u8, 0x0a);
|
||||
uxn.ws.push(u8, 0x0b);
|
||||
uxn.ws.push(u8, 0x0a);
|
||||
_ = uxn.eval();
|
||||
try std.testing.expectEqual(0x0a, uxn.ws.pop(u8));
|
||||
// _ = uxn.eval();
|
||||
// _ = uxn.eval();
|
||||
// try std.testing.expectEqual(0x0a, uxn.ws.pop(u8));
|
||||
// _ = uxn.eval();
|
||||
// _ = uxn.eval();
|
||||
// try std.testing.expectEqual(0x0a, uxn.ws.pop(u8));
|
||||
// _ = uxn.eval();
|
||||
// _ = uxn.eval();
|
||||
// try std.testing.expectEqual(0x15, uxn.ws.pop(u8));
|
||||
}
|
||||
|
||||
pub fn formatInstruction(
|
||||
|
|
Loading…
Add table
Reference in a new issue