Other Conditions
Branches are available for other conditions --
- bgt, bge, blt, ble have form: bxx src1, scr2, Label
These branches are pseudoinstructions constructed by the assembler from slt and bne
Example: blt $4, $5, Label
slt $1, $4, $5 # Set R1 to 1 if $4 < $5
bne $1, $0, Label # $1?$0 implies slt true