| 498 | } |
| 499 | |
| 500 | void BGEZALL() // Branch if Rs >= 0 and link |
| 501 | { |
| 502 | _SetLink(31); |
| 503 | if(cpuRegs.GPR.r[_Rs_].SD[0] >= 0) |
| 504 | { |
| 505 | doBranch(_BranchTarget_); |
| 506 | } |
| 507 | else |
| 508 | { |
| 509 | cpuRegs.pc +=4; |
| 510 | intEventTest(); |
| 511 | } |
| 512 | } |
| 513 | |
| 514 | /********************************************************* |
| 515 | * Register jump * |
nothing calls this directly
no test coverage detected