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