mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-14 04:48:42 +00:00
28 lines
622 B
C++
28 lines
622 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "BaseMapper.h"
|
|
|
|
class Mapper242 : public BaseMapper
|
|
{
|
|
protected:
|
|
virtual uint16_t GetPRGPageSize() override { return 0x8000; }
|
|
virtual uint16_t GetCHRPageSize() override { return 0x2000; }
|
|
|
|
void InitMapper() override
|
|
{
|
|
Reset(false);
|
|
SelectCHRPage(0, 0);
|
|
}
|
|
|
|
virtual void Reset(bool softReset) override
|
|
{
|
|
SelectPRGPage(0, 0);
|
|
SetMirroringType(MirroringType::Vertical);
|
|
}
|
|
|
|
void WriteRegister(uint16_t addr, uint8_t value) override
|
|
{
|
|
SetMirroringType(addr & 0x02 ? MirroringType::Horizontal : MirroringType::Vertical);
|
|
SelectPRGPage(0, (addr >> 3) & 0x0F);
|
|
}
|
|
}; |