2014-12-31 22:53:55 +00:00
|
|
|
// Globals (Public)
|
|
|
|
extern uint16_t g_nVideoClockVert;
|
|
|
|
extern uint16_t g_nVideoClockHorz;
|
2015-01-08 20:05:23 +00:00
|
|
|
extern uint32_t g_nChromaSize;
|
2014-12-31 22:53:55 +00:00
|
|
|
|
|
|
|
// Prototypes (Public) ________________________________________________
|
2016-11-06 21:59:45 +00:00
|
|
|
extern void NTSC_SetVideoMode( uint32_t uVideoModeFlags );
|
2015-01-04 02:28:47 +00:00
|
|
|
extern void NTSC_SetVideoStyle();
|
|
|
|
extern void NTSC_SetVideoTextMode( int cols );
|
2015-01-08 20:05:23 +00:00
|
|
|
extern uint32_t*NTSC_VideoGetChromaTable( bool bHueTypeMonochrome, bool bMonitorTypeColorTV );
|
2018-02-02 20:19:48 +00:00
|
|
|
extern void NTSC_VideoClockResync( const DWORD dwCyclesThisFrame );
|
|
|
|
extern uint16_t NTSC_VideoGetScannerAddress( const ULONG uExecutedCycles );
|
2015-01-04 02:28:47 +00:00
|
|
|
extern void NTSC_VideoInit( uint8_t *pFramebuffer );
|
2016-04-05 21:17:29 +00:00
|
|
|
extern void NTSC_VideoReinitialize( DWORD cyclesThisFrame );
|
|
|
|
extern void NTSC_VideoInitAppleType();
|
2015-01-08 20:05:23 +00:00
|
|
|
extern void NTSC_VideoInitChroma();
|
2015-01-04 02:28:47 +00:00
|
|
|
extern void NTSC_VideoUpdateCycles( long cycles6502 );
|
2016-09-25 09:42:14 +00:00
|
|
|
extern void NTSC_VideoRedrawWholeScreen( void );
|
2018-09-09 12:56:55 +00:00
|
|
|
extern UINT NTSC_GetFrameBufferBorderlessWidth( void );
|