Pseudoinstructions: Branch
Comparison to 0
Instruction
Real instructions
Semantics
beqz $rs, LABEL
beq $rs,$zero,label
if (R[s] == 0)
goto LABEL
bnez $rs, LABEL
bne $rs,$zero,label
if (R[s] != 0)
goto LABEL