mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-03-01 11:29:27 +00:00
Separate NMOS 6502 and CMOS 65C02 support CPU flag handling improvement NMI support Apple II (original model) support Apple II/IIPlus mode font improvement "M" glyph improvement Small _M14 / CLK_6502 fix. Reset behavior improvement Small monochrome video improvement - mono text now honors color selection just like mono graphics.
29 lines
785 B
C
29 lines
785 B
C
#pragma once
|
|
|
|
extern char VERSIONSTRING[]; // Contructed in WinMain()
|
|
|
|
extern BOOL apple2e;
|
|
extern BOOL apple2plus;
|
|
extern BOOL behind;
|
|
extern DWORD cumulativecycles;
|
|
extern DWORD cyclenum;
|
|
extern DWORD emulmsec;
|
|
extern bool g_bFullSpeed;
|
|
extern HINSTANCE instance;
|
|
extern int mode;
|
|
extern DWORD needsprecision;
|
|
extern TCHAR progdir[MAX_PATH];
|
|
extern BOOL resettiming;
|
|
extern BOOL restart;
|
|
|
|
extern DWORD g_dwSpeed;
|
|
extern double g_fCurrentCLK6502;
|
|
|
|
extern int g_nCpuCyclesFeedback;
|
|
extern DWORD g_dwCyclesThisFrame;
|
|
|
|
extern FILE* g_fh; // Filehandle for log file
|
|
extern bool g_bDisableDirectSound; // Cmd line switch: don't init DS (so no MB support)
|
|
|
|
void SetCurrentCLK6502();
|