mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-23 17:19:39 +00:00
40 lines
913 B
C++
40 lines
913 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "BaseMapper.h"
|
|
|
|
class Mapper212 : public BaseMapper
|
|
{
|
|
protected:
|
|
virtual uint16_t GetPRGPageSize() override { return 0x4000; }
|
|
virtual uint16_t GetCHRPageSize() override { return 0x2000; }
|
|
virtual bool AllowRegisterRead() override { return true; }
|
|
|
|
void InitMapper() override
|
|
{
|
|
AddRegisterRange(0x6000, 0x7FFF, MemoryOperation::Read);
|
|
WriteRegister(0x8000, 0);
|
|
}
|
|
|
|
uint8_t ReadRegister(uint16_t addr) override
|
|
{
|
|
uint8_t value = InternalReadRam(addr);
|
|
|
|
if((addr & 0xE010) == 0x6000) {
|
|
value |= 0x80;
|
|
}
|
|
|
|
return value;
|
|
}
|
|
|
|
void WriteRegister(uint16_t addr, uint8_t value) override
|
|
{
|
|
if(addr & 0x4000) {
|
|
SelectPrgPage2x(0, addr & 0x06);
|
|
} else {
|
|
SelectPRGPage(0, addr & 0x07);
|
|
SelectPRGPage(1, addr & 0x07);
|
|
}
|
|
SelectCHRPage(0, addr & 0x07);
|
|
SetMirroringType(addr & 0x08 ? MirroringType::Horizontal : MirroringType::Vertical);
|
|
}
|
|
}; |