| 406 | |
| 407 | |
| 408 | void BEQL() // Branch if Rs == Rt |
| 409 | { |
| 410 | if(cpuRegs.GPR.r[_Rs_].SD[0] == cpuRegs.GPR.r[_Rt_].SD[0]) |
| 411 | { |
| 412 | doBranch(_BranchTarget_); |
| 413 | } |
| 414 | else |
| 415 | { |
| 416 | cpuRegs.pc +=4; |
| 417 | intEventTest(); |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | void BNEL() // Branch if Rs != Rt |
| 422 | { |
nothing calls this directly
no test coverage detected