TSK3000A Generic Instruction - BLTU
Frozen Content
Instruction: Branch On Less Than Unsigned
Assembler Format | Example | Translates to... |
---|---|---|
bltu rA, rB, target | bltu $3, $4, Shifter | sltu $at, rA, rB |
bltu rA, IMM32, target | bltu $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:
sltiu $at, rA, IMM16
bne $at, $0, target