Mesen/Core/Mapper229.h

27 lines
616 B
C
Raw Normal View History

2016-08-13 00:16:18 +00:00
#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class Mapper229 : public BaseMapper
{
protected:
2016-12-18 04:14:47 +00:00
virtual uint16_t GetPRGPageSize() override { return 0x4000; }
virtual uint16_t GetCHRPageSize() override { return 0x2000; }
2016-08-13 00:16:18 +00:00
2016-12-18 04:14:47 +00:00
void InitMapper() override
2016-08-13 00:16:18 +00:00
{
WriteRegister(0x8000, 0);
}
2016-12-18 04:14:47 +00:00
void WriteRegister(uint16_t addr, uint8_t value) override
2016-08-13 00:16:18 +00:00
{
SelectCHRPage(0, addr & 0xFF);
if(!(addr & 0x1E)) {
SelectPrgPage2x(0, 0);
} else {
SelectPRGPage(0, addr & 0x1F);
SelectPRGPage(1, addr & 0x1F);
}
SetMirroringType(addr & 0x20 ? MirroringType::Horizontal : MirroringType::Vertical);
}
};