From d521871b98c2da215615b2b9fc5b90cad0223df4 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Wed, 1 Nov 2023 18:12:27 +0000 Subject: Removed the index printing in fib.asm --- examples/fib.asm | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'examples/fib.asm') diff --git a/examples/fib.asm b/examples/fib.asm index 2864ba3..5542f48 100644 --- a/examples/fib.asm +++ b/examples/fib.asm @@ -11,18 +11,14 @@ ;; Print REG[0] and REG[1] ;; Here is the loop back point `#` - push.hword 1 - print.hword - push.byte ':' + push.byte '\t' print.char push.reg.word 0 print.word push.byte '\n' print.char - push.hword 2 - print.hword - push.byte ':' + push.byte '\t' print.char push.reg.word 1 print.word -- cgit v1.2.3-13-gbd6f