Archived
1
0

Update helloworld.asm

This commit is contained in:
Erick
2022-02-06 14:28:17 +01:00
parent afd3481703
commit 698ada4fb7
+6 -6
View File
@@ -1,6 +1,6 @@
.ORIG x3000;
LEA R0, HENLO_STR;
PUTs;
HALT;
HENLO_STR .STRINGZ "Henlo world!";
.END
.ORIG x3000
LEA R0, HS ;
PUTS ;
HALT ;
HS .STRINGZ "Henlo world!"
.END