| 419 | } |
| 420 | |
| 421 | void BNEL() // Branch if Rs != Rt |
| 422 | { |
| 423 | if(cpuRegs.GPR.r[_Rs_].SD[0] != cpuRegs.GPR.r[_Rt_].SD[0]) |
| 424 | { |
| 425 | doBranch(_BranchTarget_); |
| 426 | } |
| 427 | else |
| 428 | { |
| 429 | cpuRegs.pc +=4; |
| 430 | intEventTest(); |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | void BLEZL() // Branch if Rs <= 0 |
| 435 | { |
nothing calls this directly
no test coverage detected