<<< Logical expression example 2 | Index | Conditional jumps >>> |
Strategy:
insert labels in text segment
jump or conditionally branch to labels
Your only options in MIPS are "goto" or "if-goto"
Unconditional jump instructions (branch instructions)
j label # goto label jr $t1 # goto the address in $t1
<<< Logical expression example 2 | Index | Conditional jumps >>> |