| 391 | } |
| 392 | |
| 393 | void BLTZAL() // Branch if Rs < 0 and link |
| 394 | { |
| 395 | _SetLink(31); |
| 396 | if (cpuRegs.GPR.r[_Rs_].SD[0] < 0) |
| 397 | { |
| 398 | doBranch(_BranchTarget_); |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | /********************************************************* |
| 403 | * Register branch logic Likely * |
nothing calls this directly
no test coverage detected