Mesen/Core/Mapper62.h

44 lines
964 B
C
Raw Normal View History

2016-01-23 11:57:24 -05:00
#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class Mapper62 : public BaseMapper
{
protected:
2016-12-17 23:14:47 -05:00
virtual uint16_t GetPRGPageSize() override { return 0x4000; }
virtual uint16_t GetCHRPageSize() override { return 0x2000; }
2016-01-23 11:57:24 -05:00
2016-12-17 23:14:47 -05:00
void InitMapper() override
2016-01-23 11:57:24 -05:00
{
SelectPRGPage(0, 0);
SelectPRGPage(1, 1);
SelectCHRPage(0, 0);
}
2016-12-17 23:14:47 -05:00
virtual void Reset(bool softReset) override
2016-01-23 11:57:24 -05:00
{
if(softReset) {
SelectPRGPage(0, 0);
SelectPRGPage(1, 1);
SelectCHRPage(0, 0);
}
}
2016-12-17 23:14:47 -05:00
void WriteRegister(uint16_t addr, uint8_t value) override
2016-01-23 11:57:24 -05:00
{
uint8_t prgPage = ((addr & 0x3F00) >> 8) | (addr & 0x40);
uint8_t chrPage = ((addr & 0x1F) << 2) | (value & 0x03);
if(addr & 0x20) {
SelectPRGPage(0, prgPage);
SelectPRGPage(1, prgPage);
} else {
SelectPRGPage(0, prgPage & 0xFE);
SelectPRGPage(1, (prgPage & 0xFE) + 1);
}
SelectCHRPage(0, chrPage);
SetMirroringType(addr & 0x80 ? MirroringType::Horizontal : MirroringType::Vertical);
}
};