| 432 | } |
| 433 | |
| 434 | void BLEZL() // Branch if Rs <= 0 |
| 435 | { |
| 436 | if(cpuRegs.GPR.r[_Rs_].SD[0] <= 0) |
| 437 | { |
| 438 | doBranch(_BranchTarget_); |
| 439 | } |
| 440 | else |
| 441 | { |
| 442 | cpuRegs.pc +=4; |
| 443 | intEventTest(); |
| 444 | } |
| 445 | } |
| 446 | |
| 447 | void BGTZL() // Branch if Rs > 0 |
| 448 | { |
nothing calls this directly
no test coverage detected