Archived
1
0

Create helloworld.asm

This commit is contained in:
Erick
2022-02-05 02:17:05 +01:00
parent a879eb3ea7
commit a7cdd42947
+6
View File
@@ -0,0 +1,6 @@
.ORIG x3000;
LEA R0, HENLO_STR;
PUTs;
HALT;
HENLO_STR .STRINGZ "Henlo world";
.END