===========================================================================
| 2441 | |
| 2442 | //=========================================================================== |
| 2443 | void NTSC_VideoInitAppleType () |
| 2444 | { |
| 2445 | int model = GetApple2Type(); |
| 2446 | |
| 2447 | // anything other than low bit set means not II/II+ (TC: include Pravets machines too?) |
| 2448 | if (model & 0xFFFE) |
| 2449 | g_pHorzClockOffset = APPLE_IIE_HORZ_CLOCK_OFFSET; |
| 2450 | else |
| 2451 | g_pHorzClockOffset = APPLE_IIP_HORZ_CLOCK_OFFSET; |
| 2452 | |
| 2453 | set_csbits(); |
| 2454 | } |
| 2455 | |
| 2456 | //=========================================================================== |
| 2457 | void NTSC_VideoInitChroma() |
no test coverage detected