# # hello.asm # Jeff Ondich, 7 April 2019 # .data message: .asciiz "hello, world\n" .text la $a0, message li $v0, 4 syscall # Exit li $v0, 10 syscall