From 8329d7ba775fc4cc514f70873a462987fe4b08a7 Mon Sep 17 00:00:00 2001 From: Erick <74315338+erickahmed@users.noreply.github.com> Date: Sun, 6 Feb 2022 22:21:38 +0100 Subject: [PATCH] Delete helloworld.asm --- asm/helloworld.asm | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 asm/helloworld.asm diff --git a/asm/helloworld.asm b/asm/helloworld.asm deleted file mode 100644 index ae4edc1..0000000 --- a/asm/helloworld.asm +++ /dev/null @@ -1,26 +0,0 @@ -.ORIG x3000 - AND R0, R0, #0 - AND R1, R1, #0 - AND R3, R3, #0 - LEA R0, NUM - ADD R1, R1, R0 - LD R2, ASCII - -FOR_LOOP - LDR R4, R1, #0 - BRz END_LOOP - ADD R4, R4, R2 - STR R4, R1, #0 - ADD R1, R1, #1 - BRnzp FOR_LOOP -END_LOOP - - PUTs -HALT - -ASCII .fill x30 -NUM .fill x01 - .fill x02 - .fill x03 - .fill x04 -.END