I am new at assembly language and confused about bottom tests. how can I speed up this loop ?
Speed up this loop, by making it bottom-tested, without modifying its execution results:
add $t0, $zero, $zero
addi $t1, $zero, 10
Top: beq $t0, $t1, Continue
{loop body}
addi $t0, $t0, 1
j Top
Continue: . . .