| 471 | } |
| 472 | |
| 473 | void BGEZL() // Branch if Rs >= 0 |
| 474 | { |
| 475 | if(cpuRegs.GPR.r[_Rs_].SD[0] >= 0) |
| 476 | { |
| 477 | doBranch(_BranchTarget_); |
| 478 | } |
| 479 | else |
| 480 | { |
| 481 | cpuRegs.pc +=4; |
| 482 | intEventTest(); |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | void BLTZALL() // Branch if Rs < 0 and link |
| 487 | { |
nothing calls this directly
no test coverage detected