I just started to learn mips32 and I use QtSpim emulator on Windows 10. I get that error when I try to load the following code :
.data
X: .byte 5,1,4,2,8
.text
.globl main
main:
deb:
xor $t4, $t4, $t4
la $t3, X
addi $t5, $t3, 4
bcl:
slt $t6, $t2, $t1
move $t4, $t6
suite:
bne $t3, $t5, bcl
jr $ra
I thank you in advance for your answers !
P.S. The code is copied from a tutorial.