2006-02-25 20:50:29 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-27 16:18:37 +00:00
|
|
|
// Memory Flag
|
|
|
|
#define MF_80STORE 0x00000001
|
|
|
|
#define MF_ALTZP 0x00000002
|
|
|
|
#define MF_AUXREAD 0x00000004 // RAMRD
|
|
|
|
#define MF_AUXWRITE 0x00000008 // RAMWRT
|
2017-04-27 19:33:51 +00:00
|
|
|
#define MF_BANK2 0x00000010 // Language Card Bank 2 $D000..$DFFF
|
|
|
|
#define MF_HIGHRAM 0x00000020 // Language Card RAM is active $D000..$DFFF
|
2017-04-27 16:18:37 +00:00
|
|
|
#define MF_HIRES 0x00000040
|
|
|
|
#define MF_PAGE2 0x00000080
|
|
|
|
#define MF_SLOTC3ROM 0x00000100
|
|
|
|
#define MF_SLOTCXROM 0x00000200
|
2017-04-27 20:36:33 +00:00
|
|
|
#define MF_WRITERAM 0x00000400 // Language Card RAM is Write Enabled
|
2017-04-27 16:18:37 +00:00
|
|
|
#define MF_IMAGEMASK 0x000003F7
|
|
|
|
|
2008-09-04 16:30:34 +00:00
|
|
|
enum
|
|
|
|
{
|
2009-01-09 23:27:29 +00:00
|
|
|
// Note: All are in bytes!
|
2008-09-04 16:30:34 +00:00
|
|
|
APPLE_SLOT_SIZE = 0x0100, // 1 page = $Cx00 .. $CxFF (slot 1 .. 7)
|
|
|
|
APPLE_SLOT_BEGIN = 0xC100, // each slot has 1 page reserved for it
|
|
|
|
APPLE_SLOT_END = 0xC7FF, //
|
|
|
|
|
|
|
|
FIRMWARE_EXPANSION_SIZE = 0x0800, // 8 pages = $C800 .. $CFFF
|
|
|
|
FIRMWARE_EXPANSION_BEGIN = 0xC800, // [C800,CFFF)
|
|
|
|
FIRMWARE_EXPANSION_END = 0xCFFF //
|
|
|
|
};
|
|
|
|
|
2006-03-09 21:10:40 +00:00
|
|
|
enum MemoryInitPattern_e
|
|
|
|
{
|
|
|
|
MIP_ZERO
|
2014-07-18 03:18:59 +00:00
|
|
|
, MIP_RANDOM
|
2006-03-09 21:10:40 +00:00
|
|
|
, MIP_FF_FF_00_00
|
2014-07-18 03:18:59 +00:00
|
|
|
, MIP_FF_00_FULL_PAGE
|
|
|
|
, MIP_00_FF_HALF_PAGE
|
|
|
|
, MIP_FF_00_HALF_PAGE
|
2014-07-18 03:42:19 +00:00
|
|
|
, MIP_PAGE_ADDRESS_LOW
|
|
|
|
, MIP_PAGE_ADDRESS_HIGH
|
2006-03-09 21:10:40 +00:00
|
|
|
, NUM_MIP
|
|
|
|
};
|
|
|
|
|
2017-04-27 20:59:29 +00:00
|
|
|
enum MemoryType_e
|
|
|
|
{
|
|
|
|
MEM_TYPE_NATIVE = 0,
|
|
|
|
MEM_TYPE_RAMWORKS = 1,
|
|
|
|
MEM_TYPE_SATURN = 2,
|
|
|
|
NUM_MEM_TYPE = 3
|
|
|
|
};
|
2017-05-13 21:07:53 +00:00
|
|
|
|
2018-03-03 21:27:50 +00:00
|
|
|
typedef BYTE (__stdcall *iofunction)(WORD nPC, WORD nAddr, BYTE nWriteFlag, BYTE nWriteValue, ULONG nExecutedCycles);
|
2017-05-13 21:07:53 +00:00
|
|
|
|
2017-04-27 20:59:29 +00:00
|
|
|
extern MemoryType_e g_eMemType;
|
|
|
|
|
2007-05-28 11:16:42 +00:00
|
|
|
extern iofunction IORead[256];
|
|
|
|
extern iofunction IOWrite[256];
|
|
|
|
extern LPBYTE memwrite[0x100];
|
2006-02-25 20:50:29 +00:00
|
|
|
extern LPBYTE mem;
|
|
|
|
extern LPBYTE memdirty;
|
|
|
|
|
|
|
|
#ifdef RAMWORKS
|
2015-04-12 16:30:16 +00:00
|
|
|
const UINT kMaxExMemoryBanks = 127; // 127 * aux mem(64K) + main mem(64K) = 8MB
|
2006-02-25 20:50:29 +00:00
|
|
|
extern UINT g_uMaxExPages; // user requested ram pages (from cmd line)
|
2017-04-27 20:59:29 +00:00
|
|
|
extern UINT g_uActiveBank;
|
2006-02-25 20:50:29 +00:00
|
|
|
#endif
|
|
|
|
|
2017-04-27 20:59:29 +00:00
|
|
|
#ifdef SATURN
|
2017-04-27 21:50:15 +00:00
|
|
|
extern UINT g_uSaturnTotalBanks;
|
2017-04-27 20:59:29 +00:00
|
|
|
extern UINT g_uSaturnActiveBank; // Saturn 128K Language Card Bank 0 .. 7
|
|
|
|
#endif // SATURN
|
|
|
|
|
2007-05-28 11:16:42 +00:00
|
|
|
void RegisterIoHandler(UINT uSlot, iofunction IOReadC0, iofunction IOWriteC0, iofunction IOReadCx, iofunction IOWriteCx, LPVOID lpSlotParameter, BYTE* pExpansionRom);
|
|
|
|
|
2006-02-25 20:50:29 +00:00
|
|
|
void MemDestroy ();
|
2017-05-13 21:07:53 +00:00
|
|
|
bool MemCheckSLOTC3ROM();
|
2007-05-28 11:16:42 +00:00
|
|
|
bool MemCheckSLOTCXROM();
|
2013-07-11 21:21:58 +00:00
|
|
|
LPBYTE MemGetAuxPtr(const WORD);
|
|
|
|
LPBYTE MemGetMainPtr(const WORD);
|
2013-04-26 21:55:45 +00:00
|
|
|
LPBYTE MemGetBankPtr(const UINT nBank);
|
2007-08-06 21:38:35 +00:00
|
|
|
LPBYTE MemGetCxRomPeripheral();
|
2018-03-20 01:49:08 +00:00
|
|
|
DWORD GetMemMode(void);
|
2017-03-10 22:00:01 +00:00
|
|
|
bool MemIsAddrCodeMemory(const USHORT addr);
|
2006-02-25 20:50:29 +00:00
|
|
|
void MemInitialize ();
|
2015-02-13 22:40:53 +00:00
|
|
|
void MemInitializeROM(void);
|
|
|
|
void MemInitializeCustomF8ROM(void);
|
|
|
|
void MemInitializeIO(void);
|
2017-09-22 21:23:13 +00:00
|
|
|
void MemInitializeCardExpansionRomFromSnapshot(void);
|
2007-08-06 21:38:35 +00:00
|
|
|
BYTE MemReadFloatingBus(const ULONG uExecutedCycles);
|
|
|
|
BYTE MemReadFloatingBus(const BYTE highbit, const ULONG uExecutedCycles);
|
2006-02-25 20:50:29 +00:00
|
|
|
void MemReset ();
|
|
|
|
void MemResetPaging ();
|
2013-09-14 21:46:39 +00:00
|
|
|
void MemUpdatePaging(BOOL initialize);
|
2007-05-28 11:16:42 +00:00
|
|
|
LPVOID MemGetSlotParameters (UINT uSlot);
|
2015-02-13 22:40:53 +00:00
|
|
|
void MemSetSnapshot_v1(const DWORD MemMode, const BOOL LastWriteRam, const BYTE* const pMemMain, const BYTE* const pMemAux);
|
2015-12-05 16:50:27 +00:00
|
|
|
std::string MemGetSnapshotUnitAuxSlotName(void);
|
|
|
|
void MemSaveSnapshot(class YamlSaveHelper& yamlSaveHelper);
|
|
|
|
bool MemLoadSnapshot(class YamlLoadHelper& yamlLoadHelper);
|
|
|
|
void MemSaveSnapshotAux(class YamlSaveHelper& yamlSaveHelper);
|
|
|
|
bool MemLoadSnapshotAux(class YamlLoadHelper& yamlLoadHelper, UINT version);
|
2006-02-25 20:50:29 +00:00
|
|
|
|
2007-05-28 11:16:42 +00:00
|
|
|
BYTE __stdcall IO_Null(WORD programcounter, WORD address, BYTE write, BYTE value, ULONG nCycles);
|
2006-02-25 20:50:29 +00:00
|
|
|
|
2018-03-03 21:27:50 +00:00
|
|
|
BYTE __stdcall MemCheckPaging (WORD pc, WORD addr, BYTE bWrite, BYTE d, ULONG nExecutedCycles);
|
|
|
|
BYTE __stdcall MemSetPaging(WORD pc, WORD addr, BYTE bWrite, BYTE d, ULONG nExecutedCycles);
|