From 1e3787256c8fb98c41e3263fe697f30557a895fe Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Sat, 7 Dec 2019 18:21:05 -0500 Subject: Added support for labels to the assembly language monitor. I also rewrote the fibonacci program to include lables. --- test/test-stack.s | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test/test-stack.s') diff --git a/test/test-stack.s b/test/test-stack.s index e31e343..88ed25c 100644 --- a/test/test-stack.s +++ b/test/test-stack.s @@ -1,7 +1,10 @@ +init: cps + +loop: iax pha #$8 ply #$8 -jmp $1 +jmp loop done -- cgit v1.2.3-13-gbd6f