我使用SPIM MIPS模拟器一个小白。
我得到了标题X 26倍的错误,当我尝试初始化的26个字的排列为0。我隔离是存储字操作问题sw $t0, 0($s3)
但不知道什么我做错了。
编码:
.data
theArray: .space 104
theArraySz: .word 26
.text
.globl main
main:
move $t0, $zero
la $s3, theArray
lw $s4, theArraySz
add $t2, $zero
initLoop:
beq $t2, $s4, initEnd
sw $t0, 0($s3)
addi $s3, $s3, 4
addi $t2, $t2, 1
j initLoop
initEnd:
jr $ra