# 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