mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-23 00:30:17 +00:00
0b2104cc89
Add 2 virtual methods to Card to load and save snapshots.
31 lines
734 B
C++
31 lines
734 B
C++
#pragma once
|
|
|
|
#include "Card.h"
|
|
|
|
class FourPlayCard : public Card
|
|
{
|
|
public:
|
|
FourPlayCard(UINT slot) :
|
|
Card(CT_FourPlay, slot)
|
|
{
|
|
}
|
|
virtual ~FourPlayCard(void) {}
|
|
|
|
virtual void Init(void) {}
|
|
virtual void Reset(const bool powerCycle) {}
|
|
virtual void Update(const ULONG nExecutedCycles) {}
|
|
|
|
virtual void InitializeIO(LPBYTE pCxRomPeripheral);
|
|
|
|
static BYTE __stdcall IORead(WORD pc, WORD addr, BYTE bWrite, BYTE value, ULONG nExecutedCycles);
|
|
|
|
static std::string GetSnapshotCardName(void);
|
|
virtual void SaveSnapshot(YamlSaveHelper& yamlSaveHelper);
|
|
virtual bool LoadSnapshot(YamlLoadHelper& yamlLoadHelper, UINT version);
|
|
|
|
static const UINT JOYSTICKSTATIONARY = 0x20;
|
|
|
|
private:
|
|
static BYTE MyGetAsyncKeyState(int vKey);
|
|
};
|