I want to write
.text
main:
lw $t2, c
.data
c: .word 1
without using lw, on mars I tried
add $t2,$t2,c
and also
addi $t2,$t2,0($c)
but they dont work How do I do this
I want to write
.text
main:
lw $t2, c
.data
c: .word 1
without using lw, on mars I tried
add $t2,$t2,c
and also
addi $t2,$t2,0($c)
but they dont work How do I do this