Mesen/Core/UnlPci556.h

24 lines
609 B
C
Raw Normal View History

2015-12-30 02:25:31 +00:00
#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class UnlPci556 : public BaseMapper
{
protected:
2016-12-18 04:14:47 +00:00
virtual uint16_t GetPRGPageSize() override { return 0x8000; }
virtual uint16_t GetCHRPageSize() override { return 0x2000; }
virtual uint16_t RegisterStartAddress() override { return 0x7000; }
virtual uint16_t RegisterEndAddress() override { return 0x7FFF; }
2015-12-30 02:25:31 +00:00
2016-12-18 04:14:47 +00:00
void InitMapper() override
2015-12-30 02:25:31 +00:00
{
SelectPRGPage(0, 0);
SelectCHRPage(0, 0);
}
2016-12-18 04:14:47 +00:00
void WriteRegister(uint16_t addr, uint8_t value) override
2015-12-30 02:25:31 +00:00
{
SelectPRGPage(0, value & 0x03);
SelectCHRPage(0, (value >> 2) & 0x03);
}
};