I am trying to create a simple program that generates an array a with 5 values , and adds 3 to a[2]. I want to simulate it into QTspim This is the program:
.data
a: .word 1,2 ,3 ,4 ,5
la $to, a #put the adress of a0 into register t0
lw $t1, 8($to) # put the value of a2 into register 1
addi $t2, $t1, 3
li $v0,10
syscall
And this is the errow message I get:
Any ideas?
QtSpim's parser is a bit picky, so fix your array declaration:
Then you'll have to open the
.text
(code) section and define yourmain
label before your first instruction:And you'll have to fix your typos of
$to
->$t0
.