MIPS assembly looping multiple .data -
MIPS assembly looping multiple .data -
i'm wondering how store value 0xaaaaaaaa in loop throughout 4 of info words. i've been comfortable calling single info , looping that, i'm dealing 4 info words , have no thought how set them loop.
here's have code far:
.text main: la $t0, w la $t1, x la $t2, y la $t3, z li $t4, 0xaaaaaaaa loop: lb $t5, ($t4) bqez end: li $v0, 10 syscall .data w: .word 0 x: .word 0 y: .word 0 z: .word 0
mips
Comments
Post a Comment