roseannes 0 Newbie Poster

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: . . .
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.