2016-01-19 03:48:09 +00:00
|
|
|
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "BaseMapper.h"
|
|
|
|
|
|
|
|
class Mapper200 : 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; }
|
2016-01-19 03:48:09 +00:00
|
|
|
|
2016-12-18 04:14:47 +00:00
|
|
|
void InitMapper() override
|
2016-01-19 03:48:09 +00:00
|
|
|
{
|
|
|
|
SelectPRGPage(0, 0);
|
|
|
|
SelectPRGPage(1, 0);
|
|
|
|
SelectCHRPage(0, 0);
|
|
|
|
}
|
|
|
|
|
2016-12-18 04:14:47 +00:00
|
|
|
void WriteRegister(uint16_t addr, uint8_t value) override
|
2016-01-19 03:48:09 +00:00
|
|
|
{
|
|
|
|
uint8_t bank = addr & 0x07;
|
|
|
|
SelectPRGPage(0, bank);
|
|
|
|
SelectPRGPage(1, bank);
|
|
|
|
SelectCHRPage(0, bank);
|
|
|
|
|
|
|
|
SetMirroringType(addr & 0x08 ? MirroringType::Vertical : MirroringType::Horizontal);
|
|
|
|
}
|
|
|
|
};
|