Mesen-X/Core/Mapper242.h

28 lines
622 B
C
Raw Normal View History

2016-01-18 21:46:53 -05:00
#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class Mapper242 : public BaseMapper
{
protected:
2016-12-17 23:14:47 -05:00
virtual uint16_t GetPRGPageSize() override { return 0x8000; }
virtual uint16_t GetCHRPageSize() override { return 0x2000; }
2016-01-18 21:46:53 -05:00
2016-12-17 23:14:47 -05:00
void InitMapper() override
2016-01-18 21:46:53 -05:00
{
Reset(false);
SelectCHRPage(0, 0);
}
2016-12-17 23:14:47 -05:00
virtual void Reset(bool softReset) override
2016-01-18 21:46:53 -05:00
{
SelectPRGPage(0, 0);
SetMirroringType(MirroringType::Vertical);
}
2016-12-17 23:14:47 -05:00
void WriteRegister(uint16_t addr, uint8_t value) override
2016-01-18 21:46:53 -05:00
{
SetMirroringType(addr & 0x02 ? MirroringType::Horizontal : MirroringType::Vertical);
SelectPRGPage(0, (addr >> 3) & 0x0F);
}
};