Incorporate changes about LC.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
parent
4f88325d3a
commit
ee2c70c389
4 changed files with 9 additions and 3 deletions
|
@ -22,6 +22,7 @@ add_library(appleii SHARED
|
|||
z80emu.cpp
|
||||
ParallelPrinter.cpp
|
||||
MouseInterface.cpp
|
||||
LanguageCard.cpp
|
||||
|
||||
linux/data.cpp
|
||||
linux/dummies.cpp
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "SaveState_Structs_common.h"
|
||||
|
||||
// Memory Flag
|
||||
#define MF_80STORE 0x00000001
|
||||
#define MF_ALTZP 0x00000002
|
||||
|
@ -51,8 +53,8 @@ extern LPBYTE memdirty;
|
|||
|
||||
#ifdef RAMWORKS
|
||||
const UINT kMaxExMemoryBanks = 127; // 127 * aux mem(64K) + main mem(64K) = 8MB
|
||||
extern UINT g_uMaxExPages; // user requested ram pages (from cmd line)
|
||||
extern UINT g_uActiveBank;
|
||||
//extern UINT g_uMaxExPages; // user requested ram pages (from cmd line)
|
||||
//extern UINT g_uActiveBank;
|
||||
#endif
|
||||
|
||||
void RegisterIoHandler(UINT uSlot, iofunction IOReadC0, iofunction IOWriteC0, iofunction IOReadCx, iofunction IOWriteCx, LPVOID lpSlotParameter, BYTE* pExpansionRom);
|
||||
|
|
|
@ -25,8 +25,11 @@ eApple2Type g_Apple2Type = A2TYPE_APPLE2EENHANCED;
|
|||
int g_nMemoryClearType = MIP_FF_FF_00_00; // Note: -1 = random MIP in Memory.cpp MemReset()
|
||||
DWORD g_dwCyclesThisFrame = 0;
|
||||
bool g_bFullSpeed = false;
|
||||
|
||||
SS_CARDTYPE g_Slot0 = CT_LanguageCard;
|
||||
SS_CARDTYPE g_Slot4 = CT_Empty;
|
||||
SS_CARDTYPE g_Slot5 = CT_Empty;
|
||||
SS_CARDTYPE g_SlotAux = CT_Extended80Col;
|
||||
|
||||
HANDLE g_hCustomRomF8 = INVALID_HANDLE_VALUE; // Cmd-line specified custom ROM at $F800..$FFFF
|
||||
TCHAR g_sProgramDir[MAX_PATH] = TEXT(""); // Directory of where AppleWin executable resides
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include "Video.h"
|
||||
|
||||
void VideoReinitialize() { }
|
||||
void KeybLoadSnapshot(YamlLoadHelper&) { }
|
||||
void KeybLoadSnapshot(YamlLoadHelper&, unsigned int) { }
|
||||
std::string GetSnapshotCardName() { return ""; }
|
||||
void SpkrLoadSnapshot(YamlLoadHelper&) { }
|
||||
void KeybReset() { }
|
||||
|
|
Loading…
Add table
Reference in a new issue