Mesen/Core/Sunsoft89.h

22 lines
561 B
C
Raw Normal View History

2015-12-31 01:31:54 +00:00
#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class Sunsoft89 : 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; }
2015-12-31 01:31:54 +00:00
2016-12-18 04:14:47 +00:00
void InitMapper() override
2015-12-31 01:31:54 +00:00
{
SelectPRGPage(1, -1);
}
2016-12-18 04:14:47 +00:00
void WriteRegister(uint16_t addr, uint8_t value) override
2015-12-31 01:31:54 +00:00
{
SelectPRGPage(0, (value >> 4) & 0x07);
SelectCHRPage(0, value & 0x07 | ((value & 0x80) >> 4));
SetMirroringType((value & 0x08) == 0x08 ? MirroringType::ScreenBOnly : MirroringType::ScreenAOnly);
}
};