blob: 77198f3cd59cc9ddfbd2f964b0780950e20ffad5 [file] [log] [blame] [raw]
.section .rodata
helloworld:
.string "Hello world\n"
.section .text
.global _start
_start:
li a2, 12
lla a1, helloworld
li a0, 1
li a7, 64
ecall
li a0, 0
li a7, 93
ecall