mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-23 00:30:17 +00:00
29 lines
608 B
C++
29 lines
608 B
C++
#pragma once
|
|
|
|
#include "Card.h"
|
|
|
|
class SAMCard : public Card
|
|
{
|
|
public:
|
|
SAMCard(UINT slot) :
|
|
Card(CT_SAM),
|
|
m_slot(slot)
|
|
{
|
|
}
|
|
virtual ~SAMCard(void) {}
|
|
|
|
virtual void Init(void) {};
|
|
virtual void Reset(const bool powerCycle) {};
|
|
|
|
void InitializeIO(LPBYTE pCxRomPeripheral, UINT slot);
|
|
|
|
static BYTE __stdcall IOWrite(WORD pc, WORD addr, BYTE bWrite, BYTE value, ULONG nExecutedCycles);
|
|
|
|
static std::string GetSnapshotCardName(void);
|
|
void SaveSnapshot(class YamlSaveHelper& yamlSaveHelper);
|
|
bool LoadSnapshot(class YamlLoadHelper& yamlLoadHelper, UINT slot, UINT version);
|
|
|
|
private:
|
|
UINT m_slot;
|
|
};
|