blob: cfbac61b86109807c64fc9f560b7d8454ae20fe5 [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, 4004
syscall
li $a0, 0
li $v0, 4001
syscall