GitHub_collection_hello-world/a/Assembler lc3.asm

10 lines
101 B
NASM
Raw Normal View History

.ORIG x3000
LEA R0, HELLOWORLD
PUTS
2021-07-31 23:29:47 -04:00
HALT
2021-05-07 20:33:04 -05:00
HELLOWORLD .STRINGZ "Hello World\n"
2021-07-31 23:29:47 -04:00
.END