Branch on equal : Branches to 'label' if $t1 == $t2. Uses a PC-relative 16-bit signed offset (multiplied by 4) so the target must be within ±32 KB. Commonly the first half of an if/else test.
beq
Operands
$reg, [$reg / imm], idVariants
- Branch on equal : Branches to 'label' if $t1 == $t2. Uses a PC-relative 16-bit signed offset (multiplied by 4) so the target must be within ±32 KB. Commonly the first half of an if/else test. beq $t1,$t2,label
- Branch if EQual : Branch to statement at label if $t1 is equal to 16-bit immediate beq $t1,-100,label
- Branch if EQual : Branch to statement at label if $t1 is equal to 32-bit immediate beq $t1,100000,label
Loading...