| 64 | } |
| 65 | |
| 66 | static void CDVDSECTORREADY_INT(u32 eCycle) |
| 67 | { |
| 68 | if (psxRegs.interrupt & (1 << IopEvt_CdvdSectorReady)) |
| 69 | return; |
| 70 | |
| 71 | if (EmuConfig.Speedhacks.fastCDVD) |
| 72 | { |
| 73 | if (eCycle < Cdvd_FullSeek_Cycles && eCycle > 1) |
| 74 | eCycle *= 0.5f; |
| 75 | } |
| 76 | |
| 77 | PSX_INT(IopEvt_CdvdSectorReady, eCycle); |
| 78 | } |
| 79 | |
| 80 | static void CDVDREAD_INT(u32 eCycle) |
| 81 | { |
no test coverage detected