Mesen-X/Core/Henggedianzi179.h

28 lines
744 B
C
Raw Permalink Normal View History

2016-07-17 14:29:47 -04:00
#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class Henggedianzi179 : 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; }
virtual uint16_t RegisterStartAddress() override { return 0x8000; }
virtual uint16_t RegisterEndAddress() override { return 0xFFFF; }
2016-07-17 14:29:47 -04:00
2016-12-17 23:14:47 -05:00
void InitMapper() override
2016-07-17 14:29:47 -04:00
{
AddRegisterRange(0x5000, 0x5FFF, MemoryOperation::Write);
SelectPRGPage(0, 0);
SelectCHRPage(0, 0);
}
2016-12-17 23:14:47 -05:00
void WriteRegister(uint16_t addr, uint8_t value) override
2016-07-17 14:29:47 -04:00
{
if(addr >= 0x8000) {
SetMirroringType(value & 0x01 ? MirroringType::Horizontal : MirroringType::Vertical);
} else {
SelectPRGPage(0, value >> 1);
}
}
};