commit 0ba8d73b4e1c95bc299b49dcee2d13c4ec67c113
parent 997675e03137290b7d37b9e30a5150f12aee90df
Author: neauoire <aliceffekt@gmail.com>
Date: Tue, 2 Mar 2021 21:47:03 -0800
Fixed broken stack counter
Diffstat:
3 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/assembler.c b/assembler.c
@@ -226,7 +226,7 @@ makelabel(char *name, Uint16 addr, Uint8 len, Macro *m)
scpy(name, l->name, 64);
if(m)
l->macro = m;
- printf("New label: %s, at 0x%02x[%d]\n", l->name, l->addr, l->len);
+ printf("New label: %s, at 0x%04x[%d]\n", l->name, l->addr, l->len);
return 1;
}
diff --git a/examples/app.pattern.usm b/examples/app.pattern.usm
@@ -25,8 +25,6 @@
#0030 =window.x1 #0030 =window.y1 #00a8 =window.x2 #0090 =window.y2
- #0040 =editor.y ( TODO: Remove )
-
~window.x1 #0010 ADD2 =editor.x1
~window.y1 #0010 ADD2 =editor.y1
diff --git a/uxn.c b/uxn.c
@@ -90,23 +90,23 @@ void op_lth16(Uxn *u) { Uint16 a = pop16(&u->wst), b = pop16(&u->wst); push8(&u-
void (*ops[])(Uxn *u) = {
op_brk, op_nop, op_lit, op_jmp, op_jsr, op_rts, op_ldr, op_str,
- op_jmp, op_jsr, op_nop, op_rts, op_and, op_xor, op_rol, op_ror,
+ op_nop, op_nop, op_nop, op_nop, op_and, op_xor, op_rol, op_ror,
op_pop, op_dup, op_swp, op_ovr, op_rot, op_nop, op_wsr, op_rsw,
op_add, op_sub, op_mul, op_div, op_equ, op_neq, op_gth, op_lth,
/* 16-bit */
op_brk, op_nop16, op_lit16, op_jmp, op_jsr, op_rts, op_ldr16, op_str16,
- op_jmp, op_jsr, op_nop, op_rts, op_and16, op_xor16, op_rol16, op_ror16,
+ op_nop, op_nop, op_nop, op_nop, op_and16, op_xor16, op_rol16, op_ror16,
op_pop16, op_dup16, op_swp16, op_ovr16, op_rot16, op_wsr16, op_rsw16, op_nop,
op_add16, op_sub16, op_mul16, op_div16, op_equ16, op_neq16, op_gth16, op_lth16
};
Uint8 opr[][2] = {
- {0,0}, {0,0}, {0,0}, {0,0}, {1,1}, {1,0}, {2,1}, {3,0},
+ {0,0}, {0,0}, {0,0}, {2,0}, {2,0}, {0,0}, {2,1}, {3,0},
{2,0}, {2,0}, {0,0}, {0,0}, {2,1}, {2,1}, {2,1}, {2,1},
{1,0}, {1,2}, {2,2}, {2,3}, {3,3}, {1,0}, {0,1}, {2,1},
{2,1}, {2,1}, {2,1}, {2,1}, {2,1}, {2,1}, {2,1}, {2,1},
/* 16-bit */
- {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {2,2}, {4,0}, /* TODO */
+ {0,0}, {0,0}, {0,0}, {2,0}, {2,0}, {0,0}, {2,2}, {4,0}, /* TODO */
{0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {0,0}, /* TODO */
{0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {2,0}, {0,2}, {0,0}, /* TODO */
{4,2}, {4,2}, {4,2}, {4,2}, {4,2}, {4,2}, {4,2}, {4,2}