| 329 | *********************************************************/ |
| 330 | |
| 331 | void BEQ() // Branch if Rs == Rt |
| 332 | { |
| 333 | if (cpuRegs.GPR.r[_Rs_].SD[0] == cpuRegs.GPR.r[_Rt_].SD[0]) |
| 334 | doBranch(_BranchTarget_); |
| 335 | else |
| 336 | intEventTest(); |
| 337 | } |
| 338 | |
| 339 | void BNE() // Branch if Rs != Rt |
| 340 | { |
nothing calls this directly
no test coverage detected