6 lines
82 B
NASM
6 lines
82 B
NASM
.ORIG x3000;
|
|
LEA R0, HENLO_STR;
|
|
PUTs;
|
|
HALT;
|
|
HENLO_STR .STRINGZ "Henlo world";
|
|
.END |