mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-05 06:06:24 +00:00
32 lines
1.2 KiB
C
32 lines
1.2 KiB
C
#pragma once
|
|
|
|
#include "Video.h" // NB. needed by GCC (for fwd enum declaration)
|
|
|
|
// Globals (Public)
|
|
extern uint16_t g_nVideoClockVert;
|
|
extern uint16_t g_nVideoClockHorz;
|
|
extern uint32_t g_nChromaSize;
|
|
|
|
// Prototypes (Public) ________________________________________________
|
|
void NTSC_SetVideoMode(uint32_t uVideoModeFlags, bool bDelay=false);
|
|
void NTSC_SetVideoStyle(void);
|
|
void NTSC_SetVideoTextMode(int cols);
|
|
uint32_t* NTSC_VideoGetChromaTable(bool bHueTypeMonochrome, bool bMonitorTypeColorTV);
|
|
void NTSC_VideoClockResync(const DWORD dwCyclesThisFrame);
|
|
uint16_t NTSC_VideoGetScannerAddress(const ULONG uExecutedCycles);
|
|
uint16_t NTSC_VideoGetScannerAddressForDebugger(void);
|
|
void NTSC_Destroy(void);
|
|
void NTSC_VideoInit(uint8_t *pFramebuffer);
|
|
void NTSC_VideoReinitialize(DWORD cyclesThisFrame, bool bInitVideoScannerAddress);
|
|
void NTSC_VideoInitAppleType(void);
|
|
void NTSC_VideoInitChroma(void);
|
|
void NTSC_VideoUpdateCycles(UINT cycles6502);
|
|
void NTSC_VideoRedrawWholeScreen(void);
|
|
|
|
void NTSC_SetRefreshRate(VideoRefreshRate_e rate);
|
|
UINT NTSC_GetCyclesPerFrame(void);
|
|
UINT NTSC_GetCyclesPerLine(void);
|
|
UINT NTSC_GetVideoLines(void);
|
|
UINT NTSC_GetCyclesUntilVBlank(int cycles);
|
|
bool NTSC_IsVisible(void);
|