blob: 813388c76309ecc42249c976540dae2c0b0ced49 [file] [log] [blame] [raw]
.section .rodata
helloworld:
.string "Hello world\n"
.text
.global __start
__start:
li $a2, 12
la $a1, helloworld
li $a0, 1
li $v0, 6001
syscall
li $a0, 0
li $v0, 6058
syscall