mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-22 09:30:15 +00:00
10bf60e149
. Command line config only, and only permitted in slot 3 for now. . Save-state Unit v9: Extended: memory (added 'Last Slot to Set Main Mem LC', 'MMU LC Mode'). . Add LanguageCardManager class.
142 lines
4.0 KiB
C++
142 lines
4.0 KiB
C++
#pragma once
|
|
|
|
#include "Card.h"
|
|
|
|
//
|
|
// Language Card (base unit) for Apple //e and above
|
|
//
|
|
|
|
class LanguageCardUnit : public Card
|
|
{
|
|
public:
|
|
// in modern C++ this could be a 2nd constructor
|
|
static LanguageCardUnit * create(UINT slot);
|
|
|
|
virtual ~LanguageCardUnit(void);
|
|
|
|
virtual void Destroy(void) {}
|
|
virtual void Reset(const bool powerCycle);
|
|
virtual void Update(const ULONG nExecutedCycles) {}
|
|
|
|
virtual void InitializeIO(LPBYTE pCxRomPeripheral);
|
|
virtual UINT GetActiveBank(void) { return 0; } // Always 0 as only 1x 16K bank
|
|
virtual void SaveSnapshot(YamlSaveHelper& yamlSaveHelper) { } // A no-op for //e - called from CardManager::SaveSnapshot()
|
|
virtual bool LoadSnapshot(YamlLoadHelper& yamlLoadHelper, UINT version) { _ASSERT(0); return false; } // Not used for //e
|
|
|
|
BOOL GetLastRamWrite(void) { return m_uLastRamWrite; }
|
|
void SetLastRamWrite(BOOL count) { m_uLastRamWrite = count; }
|
|
UINT GetLCMemMode(void) { return m_memMode; }
|
|
void SetLCMemMode(UINT memMode) { m_memMode = memMode; }
|
|
void SetGlobalLCMemMode(void);
|
|
SS_CARDTYPE GetMemoryType(void) { return QueryType(); }
|
|
bool IsOpcodeRMWabs(WORD addr);
|
|
|
|
static BYTE __stdcall IO(WORD PC, WORD uAddr, BYTE bWrite, BYTE uValue, ULONG nExecutedCycles);
|
|
|
|
static const UINT kMemModeInitialState;
|
|
static const UINT kSlot0 = SLOT0;
|
|
|
|
protected:
|
|
LanguageCardUnit(SS_CARDTYPE type, UINT slot);
|
|
|
|
LPBYTE m_pMemory;
|
|
|
|
private:
|
|
UINT m_uLastRamWrite;
|
|
UINT m_memMode;
|
|
};
|
|
|
|
//
|
|
// Language Card (slot-0) for Apple II or II+
|
|
//
|
|
|
|
class LanguageCardSlot0 : public LanguageCardUnit
|
|
{
|
|
public:
|
|
// in modern C++ this could be a 2nd constructor
|
|
static LanguageCardSlot0 * create(UINT slot);
|
|
|
|
virtual ~LanguageCardSlot0(void);
|
|
|
|
virtual void SaveSnapshot(YamlSaveHelper& yamlSaveHelper);
|
|
virtual bool LoadSnapshot(YamlLoadHelper& yamlLoadHelper, UINT version);
|
|
|
|
static const UINT kMemBankSize = 16*1024;
|
|
static const std::string& GetSnapshotCardName(void);
|
|
|
|
protected:
|
|
LanguageCardSlot0(SS_CARDTYPE type, UINT slot);
|
|
void SaveLCState(class YamlSaveHelper& yamlSaveHelper);
|
|
void LoadLCState(class YamlLoadHelper& yamlLoadHelper);
|
|
|
|
private:
|
|
const std::string& GetSnapshotMemStructName(void);
|
|
};
|
|
|
|
//
|
|
// Saturn 128K
|
|
//
|
|
|
|
class Saturn128K : public LanguageCardSlot0
|
|
{
|
|
public:
|
|
Saturn128K(UINT slot, UINT banks);
|
|
virtual ~Saturn128K(void);
|
|
|
|
virtual void InitializeIO(LPBYTE pCxRomPeripheral);
|
|
virtual UINT GetActiveBank(void);
|
|
virtual void SaveSnapshot(YamlSaveHelper& yamlSaveHelper);
|
|
virtual bool LoadSnapshot(YamlLoadHelper& yamlLoadHelper, UINT version);
|
|
|
|
void SetMemMainLanguageCard(void);
|
|
|
|
static UINT GetSaturnMemorySize();
|
|
static void SetSaturnMemorySize(UINT banks);
|
|
|
|
static BYTE __stdcall IO(WORD PC, WORD uAddr, BYTE bWrite, BYTE uValue, ULONG nExecutedCycles);
|
|
|
|
// "The boards consist of 16K banks of memory (4 banks for the 64K board, 8 banks for the 128K), accessed one at a time" - Ref: "64K/128K RAM BOARD", Saturn Systems, Ch.1 Introduction(pg-5)
|
|
static const UINT kMaxSaturnBanks = 8; // 8 * 16K = 128K
|
|
static const std::string& GetSnapshotCardName(void);
|
|
|
|
private:
|
|
const std::string& GetSnapshotMemStructName(void);
|
|
|
|
static UINT g_uSaturnBanksFromCmdLine;
|
|
|
|
UINT m_uSaturnTotalBanks; // Will be > 0 if Saturn card is installed
|
|
UINT m_uSaturnActiveBank; // Saturn 128K Language Card Bank 0 .. 7
|
|
LPBYTE m_aSaturnBanks[kMaxSaturnBanks];
|
|
};
|
|
|
|
//
|
|
// Language Card manager
|
|
//
|
|
|
|
class LanguageCardManager
|
|
{
|
|
public:
|
|
LanguageCardManager(void) :
|
|
m_pLanguageCard(NULL),
|
|
m_lastSlotToSetMainMemLC(SLOT0),
|
|
m_lastSlotToSetMainMemLCFromSnapshot(SLOT0)
|
|
{}
|
|
~LanguageCardManager(void) {}
|
|
|
|
void Reset(const bool powerCycle = false);
|
|
|
|
UINT GetLastSlotToSetMainMemLC(void) { return m_lastSlotToSetMainMemLC; }
|
|
void SetLastSlotToSetMainMemLC(UINT slot) { m_lastSlotToSetMainMemLC = slot; }
|
|
void SetLastSlotToSetMainMemLCFromSnapshot(UINT slot) { m_lastSlotToSetMainMemLCFromSnapshot = slot; }
|
|
|
|
LanguageCardUnit* GetLanguageCard(void) { return m_pLanguageCard; }
|
|
bool SetLanguageCard(SS_CARDTYPE type);
|
|
|
|
void SetMemModeFromSnapshot(void);
|
|
|
|
private:
|
|
LanguageCardUnit* m_pLanguageCard;
|
|
UINT m_lastSlotToSetMainMemLC;
|
|
UINT m_lastSlotToSetMainMemLCFromSnapshot;
|
|
};
|