阅读日记:computer organization and design——RISC-V——chapter2-3
2.6LogicalOperations简单2.7InstructionsforMakingDecisionsRISC-V汇编语言包含两个决策指令,类似于带有go-to的if语句Thefirstinstructionis:beqrs1,rs2,L1此指令表示如果寄存器rs1中的值等于寄存器rs2中的值,则转到标记为L1的语句。Thesecondinstructionis:bners1,rs2,L1