| 358 | } |
| 359 | |
| 360 | void BGEZAL() // Branch if Rs >= 0 and link |
| 361 | { |
| 362 | _SetLink(31); |
| 363 | if (cpuRegs.GPR.r[_Rs_].SD[0] >= 0) |
| 364 | { |
| 365 | doBranch(_BranchTarget_); |
| 366 | } |
| 367 | } |
| 368 | |
| 369 | void BGTZ() // Branch if Rs > 0 |
| 370 | { |
nothing calls this directly
no test coverage detected