Called on a 6522 TIMER1/2 underflow
| 979 | |
| 980 | // Called on a 6522 TIMER1/2 underflow |
| 981 | int MockingboardCard::MB_SyncEventCallback(int id, int /*cycles*/, ULONG uExecutedCycles) |
| 982 | { |
| 983 | UINT slot = (id >> 4); |
| 984 | MockingboardCard* pCard = (MockingboardCard*)MemGetSlotParameters(slot); |
| 985 | return pCard->MB_SyncEventCallbackInternal(id, 0, uExecutedCycles); |
| 986 | } |
| 987 | |
| 988 | int MockingboardCard::MB_SyncEventCallbackInternal(int id, int /*cycles*/, ULONG uExecutedCycles) |
| 989 | { |
nothing calls this directly
no test coverage detected