| 445 | } |
| 446 | |
| 447 | void BGTZL() // Branch if Rs > 0 |
| 448 | { |
| 449 | if(cpuRegs.GPR.r[_Rs_].SD[0] > 0) |
| 450 | { |
| 451 | doBranch(_BranchTarget_); |
| 452 | } |
| 453 | else |
| 454 | { |
| 455 | cpuRegs.pc +=4; |
| 456 | intEventTest(); |
| 457 | } |
| 458 | } |
| 459 | |
| 460 | void BLTZL() // Branch if Rs < 0 |
| 461 | { |
nothing calls this directly
no test coverage detected