2015-12-31 09:51:01 -05:00
|
|
|
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "BaseMapper.h"
|
|
|
|
|
|
|
|
class Nina01 : public BaseMapper
|
|
|
|
{
|
|
|
|
protected:
|
2016-12-17 23:14:47 -05:00
|
|
|
virtual uint16_t GetPRGPageSize() override { return 0x8000; }
|
|
|
|
virtual uint16_t GetCHRPageSize() override { return 0x1000; }
|
|
|
|
virtual uint16_t RegisterStartAddress() override { return 0x7FFD; }
|
|
|
|
virtual uint16_t RegisterEndAddress() override { return 0x7FFF; }
|
2015-12-31 09:51:01 -05:00
|
|
|
|
2016-12-17 23:14:47 -05:00
|
|
|
void InitMapper() override
|
2015-12-31 09:51:01 -05:00
|
|
|
{
|
|
|
|
SelectPRGPage(0, 0);
|
|
|
|
}
|
|
|
|
|
2016-12-17 23:14:47 -05:00
|
|
|
void WriteRegister(uint16_t addr, uint8_t value) override
|
2015-12-31 09:51:01 -05:00
|
|
|
{
|
|
|
|
switch(addr) {
|
|
|
|
case 0x7FFD: SelectPRGPage(0, value & 0x01); break;
|
|
|
|
case 0x7FFE: SelectCHRPage(0, value & 0x0F); break;
|
|
|
|
case 0x7FFF: SelectCHRPage(1, value & 0x0F); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
WritePrgRam(addr, value);
|
|
|
|
}
|
|
|
|
};
|