| 484 | } |
| 485 | |
| 486 | void BLTZALL() // Branch if Rs < 0 and link |
| 487 | { |
| 488 | _SetLink(31); |
| 489 | if(cpuRegs.GPR.r[_Rs_].SD[0] < 0) |
| 490 | { |
| 491 | doBranch(_BranchTarget_); |
| 492 | } |
| 493 | else |
| 494 | { |
| 495 | cpuRegs.pc +=4; |
| 496 | intEventTest(); |
| 497 | } |
| 498 | } |
| 499 | |
| 500 | void BGEZALL() // Branch if Rs >= 0 and link |
| 501 | { |
nothing calls this directly
no test coverage detected