7 lines
140 B
Text
7 lines
140 B
Text
|
|
.orig x3000
|
||
|
|
LEA R0, hello ; R0 = &hello
|
||
|
|
TRAP x22 ; PUTS (print char array at addr in R0)
|
||
|
|
HALT
|
||
|
|
hello .stringz "Hello World!"
|
||
|
|
.end
|