How would I properly iterate through the characters of a defined string in Assembly? I have tried:
lb $t2, $t1($t0)
#$t1 is a number and $t0 is the string
However this does not work because $t1($t0) is illegal syntax.
How would I properly iterate through the characters of a defined string in Assembly? I have tried:
lb $t2, $t1($t0)
#$t1 is a number and $t0 is the string
However this does not work because $t1($t0) is illegal syntax.