You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
246 B
NASM
19 lines
246 B
NASM
3 years ago
|
# hello-world.asm
|
||
|
# print "hello world" to stdout and exit
|
||
|
.data
|
||
|
|
||
|
text: .ascii "Hello World\n"
|
||
|
|
||
|
.text
|
||
|
li a0, 1
|
||
|
la a1, text
|
||
|
li a2, 12
|
||
|
li a7, 64
|
||
|
ecall
|
||
|
|
||
|
|
||
|
|
||
|
li a0, 0
|
||
|
li a7, 93
|
||
|
ecall
|