MIPS汇编指令打印hello world

.data 
msg: .asciiz"hello word"
.text
main:
li $v0,4
la $a0,msg
syscall
li $v0 10
syscall

你可能感兴趣的:(汇编)