| 109 | } |
| 110 | |
| 111 | __fi int psxTestCycle( u64 startCycle, s32 delta ) |
| 112 | { |
| 113 | // typecast the conditional to signed so that things don't explode |
| 114 | // if the startCycle is ahead of our current cpu cycle. |
| 115 | |
| 116 | return (int)(psxRegs.cycle - startCycle) >= delta; |
| 117 | } |
| 118 | |
| 119 | __fi int psxRemainingCycles(IopEventId n) |
| 120 | { |
no outgoing calls
no test coverage detected