AppleWin/source/NTSC.h

19 lines
605 B
C
Raw Normal View History

// Constants
const int VIDEO_SCANNER_6502_CYCLES = 17030;
2014-12-31 14:53:55 -08:00
// Globals (Public)
extern uint16_t g_nVideoClockVert;
extern uint16_t g_nVideoClockHorz;
// Prototypes (Public) ________________________________________________
extern void NTSC_SetVideoTextMode( int cols );
extern void NTSC_SetVideoMode( int flags );
extern void NTSC_SetVideoStyle();
2015-01-02 20:58:27 -08:00
extern uint8_t NTSC_VideoGetByte(unsigned long);
2014-12-31 14:53:55 -08:00
extern void NTSC_VideoInit( uint8_t *pFramebuffer );
extern void NTSC_VideoInitAppleType ();
2015-01-02 20:58:27 -08:00
extern bool NTSC_VideoIsVbl();
2014-12-31 14:53:55 -08:00
extern void NTSC_VideoUpdateCycles( long cycles );