Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

1And in Conclusion\dots

For your reference the tables below show the conditional branching instructions which can also be found on the 61C reference card.

The below are abbreviations that will be used in the table:

InstructionName/Description
beq rs1 rs2 LabelBranch if Equal
bne rs1 rs2 LabelBranch if Not Equal
blt rs1 rs2 LabelBranch if Less Than (signed) (rs1 < rs2)
bge rs1 rs2 LabelBranch if Greater or Equal (signed) (rs1 >= rs2)
bltu rs1 rs2 LabelBranch if Less Than (unsigned)
bgeu rs1 rs2 LabelBranch if Greater Than or Equal (unsigned)

Branch Instructions (reprint of Table 2 from this section).

2Textbook Readings

P&H 2.6, 2.7, 3.2

3Additional References

See the RISC-V manual links on our RISC-V green card page.