Mesen-X/Core/CpRom.h

25 lines
564 B
C
Raw Normal View History

2015-12-28 15:16:50 -05:00
#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class CpRom : public BaseMapper
{
protected:
2016-12-17 23:14:47 -05:00
virtual uint16_t GetPRGPageSize() override { return 0x8000; }
virtual uint16_t GetCHRPageSize() override { return 0x1000; }
virtual uint32_t GetChrRamSize() override { return 0x4000; }
2015-12-28 15:16:50 -05:00
2016-12-17 23:14:47 -05:00
void InitMapper() override
2015-12-28 15:16:50 -05:00
{
SelectPRGPage(0, 0);
SelectCHRPage(0, 0);
SetMirroringType(MirroringType::Vertical);
}
2016-12-17 23:14:47 -05:00
void WriteRegister(uint16_t addr, uint8_t value) override
2015-12-28 15:16:50 -05:00
{
if(addr >= 0x8000) {
SelectCHRPage(1, value & 0x03);
}
}
};