0
我試圖在內存中使用mips32順序地存儲數字0到10。這裏是我的代碼:Mips 32將序列數組存儲到內存
addi $s2, $zero, 10
addi $s1, $zero, 0
addi $t0, $zero, 0
addi $s6, $zero, 10
L1:
beq $s1, $s2, exit
sll $t0, $s1, 2 #multiply by the size of a word to get the cur address of $s6
sw $t0, 0($s6)
addi $s1, $s1, 1
j L1
exit:
我得到一個錯誤與sw $t0, 0($s6)
有什麼不對存儲在這個內存的開始?