| 95 | } |
| 96 | |
| 97 | __fi void psxSetNextBranch( u64 startCycle, s32 delta ) |
| 98 | { |
| 99 | // typecast the conditional to signed so that things don't blow up |
| 100 | // if startCycle is greater than our next branch cycle. |
| 101 | |
| 102 | if( (int)(psxRegs.iopNextEventCycle - startCycle) > delta ) |
| 103 | psxRegs.iopNextEventCycle = startCycle + delta; |
| 104 | } |
| 105 | |
| 106 | __fi void psxSetNextBranchDelta( s32 delta ) |
| 107 | { |
no outgoing calls
no test coverage detected