TSK3000A Generic Instruction - BGEU

Frozen Content

Instruction:    Branch On Greater Than Or Equal Unsigned

Assembler Format
Example
Translates to...

bgeu rA, rB, target

bgeu $3, $4, Shifter

sltu $at, rA, rB
beq $at, $0, target

bgeu rA, IMM32, target

bgeu $3, 0x12345678, Shifter

li $at, IMM32
sltu $at, rA, $at
beq $at, $0, target

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:

sltiu $at, rA, IMM16
beq $at, $0, target

You are reporting an issue with the following selected text and/or image within the active document: