===========================================================================
| 1923 | |
| 1924 | //=========================================================================== |
| 1925 | void NTSC_VideoClockResync(const uint32_t dwCyclesThisFrame) |
| 1926 | { |
| 1927 | g_nVideoClockVert = (uint16_t)(dwCyclesThisFrame / VIDEO_SCANNER_MAX_HORZ) % g_videoScannerMaxVert; |
| 1928 | g_nVideoClockHorz = (uint16_t)(dwCyclesThisFrame % VIDEO_SCANNER_MAX_HORZ); |
| 1929 | } |
| 1930 | |
| 1931 | //=========================================================================== |
| 1932 | uint16_t NTSC_VideoGetScannerAddress(const ULONG uExecutedCycles, const bool fullSpeed) |
no outgoing calls
no test coverage detected