mirror of
https://github.com/libretro/Mesen.git
synced 2025-01-07 09:20:57 +00:00
44 lines
923 B
C
44 lines
923 B
C
|
#pragma once
|
||
|
#include "stdafx.h"
|
||
|
#include "BaseMapper.h"
|
||
|
|
||
|
class Sachen_136 : public BaseMapper
|
||
|
{
|
||
|
private:
|
||
|
uint8_t _chrReg;
|
||
|
|
||
|
protected:
|
||
|
virtual uint16_t GetPRGPageSize() { return 0x8000; }
|
||
|
virtual uint16_t GetCHRPageSize() { return 0x2000; }
|
||
|
virtual uint16_t RegisterStartAddress() { return 0x4100; }
|
||
|
virtual uint16_t RegisterEndAddress() { return 0xFFFF; }
|
||
|
virtual bool AllowRegisterRead() { return true; }
|
||
|
|
||
|
void InitMapper()
|
||
|
{
|
||
|
_chrReg = 0;
|
||
|
SelectPRGPage(0, 0);
|
||
|
SelectCHRPage(0, 0);
|
||
|
|
||
|
RemoveRegisterRange(0x4101, 0xFFFF, MemoryOperation::Read);
|
||
|
}
|
||
|
|
||
|
void StreamState(bool saving)
|
||
|
{
|
||
|
BaseMapper::StreamState(saving);
|
||
|
Stream(_chrReg);
|
||
|
}
|
||
|
|
||
|
uint8_t ReadRegister(uint16_t addr)
|
||
|
{
|
||
|
return (_chrReg & 0x3F) | (MemoryManager::GetOpenBus() & 0xC0);
|
||
|
}
|
||
|
|
||
|
void WriteRegister(uint16_t addr, uint8_t value)
|
||
|
{
|
||
|
if((addr & 0x0103) == 0x0102) {
|
||
|
_chrReg = value + 3;
|
||
|
SelectCHRPage(0, _chrReg & 0x03);
|
||
|
}
|
||
|
}
|
||
|
};
|