2016-01-18 18:03:42 -05:00
|
|
|
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "BaseMapper.h"
|
|
|
|
|
|
|
|
class UnRom_180 : 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-18 18:03:42 -05:00
|
|
|
|
2016-12-17 23:14:47 -05:00
|
|
|
void InitMapper() override
|
2016-01-18 18:03:42 -05:00
|
|
|
{
|
|
|
|
SelectPRGPage(0, 0);
|
2018-06-24 20:07:50 -04:00
|
|
|
SelectPRGPage(1, GetPowerOnByte() & 0x07);
|
2016-01-18 18:03:42 -05:00
|
|
|
SelectCHRPage(0, 0);
|
|
|
|
}
|
|
|
|
|
2016-12-17 23:14:47 -05:00
|
|
|
void WriteRegister(uint16_t addr, uint8_t value) override
|
2016-01-18 18:03:42 -05:00
|
|
|
{
|
|
|
|
SelectPRGPage(1, value & 0x07);
|
|
|
|
}
|
|
|
|
};
|