From 698ada4fb712590a35c29dd444167f4ff4684fb0 Mon Sep 17 00:00:00 2001 From: Erick Date: Sun, 6 Feb 2022 14:28:17 +0100 Subject: [PATCH] Update helloworld.asm --- asm/helloworld.asm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/asm/helloworld.asm b/asm/helloworld.asm index b671028..fd0bdb1 100644 --- a/asm/helloworld.asm +++ b/asm/helloworld.asm @@ -1,6 +1,6 @@ -.ORIG x3000; -LEA R0, HENLO_STR; -PUTs; -HALT; -HENLO_STR .STRINGZ "Henlo world!"; -.END \ No newline at end of file + .ORIG x3000 + LEA R0, HS ; + PUTS ; + HALT ; +HS .STRINGZ "Henlo world!" + .END \ No newline at end of file