TSK3000A Generic Instruction - BGE
Frozen Content
Instruction: Branch On Greater Than Or Equal
Assembler Format | Example | Translates to... |
---|---|---|
bge rA, rB, target | bge $3, $4, Shifter | slt $at, rA, rB |
bge rA, IMM32, target | bge $3, 0x12345678, Shifter | li $at, IMM32 |
Notes
In the second of the two formats, if IMM32 fits into a 16-bit value, then the macro translates into the following machine instructions:
slti $at, rA, IMM16
beq $at, $0, target