| 350 | *********************************************************/ |
| 351 | |
| 352 | void BGEZ() // Branch if Rs >= 0 |
| 353 | { |
| 354 | if(cpuRegs.GPR.r[_Rs_].SD[0] >= 0) |
| 355 | { |
| 356 | doBranch(_BranchTarget_); |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | void BGEZAL() // Branch if Rs >= 0 and link |
| 361 | { |
nothing calls this directly
no test coverage detected