I am just starting with Mips so this may sound simple but:
When I wrote the code above without li $v0,10 instruction , I got an error message: memory adress out of bound
When , I added it , it worked with no warnings.
What does this means?
.text
.globl main
main:
li $t1,27
li $t2,2
mulou $t3,$t1,$t2
li $v0,10
syscall