Mesen-X/Core/NsfCart31.h

26 lines
566 B
C
Raw Normal View History

2016-07-16 20:13:36 -04:00
#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class NsfCart31 : public BaseMapper
{
protected:
2016-12-17 23:14:47 -05:00
virtual uint16_t RegisterStartAddress() override { return 0x5000; }
virtual uint16_t RegisterEndAddress() override { return 0x5FFF; }
2016-07-16 20:13:36 -04:00
2016-12-17 23:14:47 -05:00
virtual uint16_t GetPRGPageSize() override { return 0x1000; }
virtual uint16_t GetCHRPageSize() override { return 0x2000; }
2016-07-16 20:13:36 -04:00
2016-12-17 23:14:47 -05:00
void InitMapper() override
2016-07-16 20:13:36 -04:00
{
WriteRegister(0x5FFF, 0xFF);
SelectCHRPage(0, 0);
}
2016-12-17 23:14:47 -05:00
void WriteRegister(uint16_t addr, uint8_t value) override
2016-07-16 20:13:36 -04:00
{
SelectPRGPage(addr & 0x07, value);
}
};