| 458 | } |
| 459 | |
| 460 | void BLTZL() // Branch if Rs < 0 |
| 461 | { |
| 462 | if(cpuRegs.GPR.r[_Rs_].SD[0] < 0) |
| 463 | { |
| 464 | doBranch(_BranchTarget_); |
| 465 | } |
| 466 | else |
| 467 | { |
| 468 | cpuRegs.pc +=4; |
| 469 | intEventTest(); |
| 470 | } |
| 471 | } |
| 472 | |
| 473 | void BGEZL() // Branch if Rs >= 0 |
| 474 | { |
nothing calls this directly
no test coverage detected