mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-23 09:09:45 +00:00
41 lines
1009 B
C++
41 lines
1009 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "BaseMapper.h"
|
|
|
|
class Nina03_06 : public BaseMapper
|
|
{
|
|
private:
|
|
bool _multicartMode;
|
|
|
|
protected:
|
|
virtual uint16_t GetPRGPageSize() override { return 0x8000; }
|
|
virtual uint16_t GetCHRPageSize() override { return 0x2000; }
|
|
virtual uint16_t RegisterStartAddress() override { return 0x4100; }
|
|
virtual uint16_t RegisterEndAddress() override { return 0x5FFF; }
|
|
|
|
void InitMapper() override
|
|
{
|
|
SelectPRGPage(0, 0);
|
|
SelectCHRPage(0, 0);
|
|
}
|
|
|
|
void WriteRegister(uint16_t addr, uint8_t value) override
|
|
{
|
|
if((addr & 0xE100) == 0x4100) {
|
|
if(_multicartMode) {
|
|
//Mapper 113
|
|
SelectPRGPage(0, (value >> 3) & 0x07);
|
|
SelectCHRPage(0, (value & 0x07) | ((value >> 3) & 0x08));
|
|
SetMirroringType((value & 0x80) == 0x80 ? MirroringType::Vertical : MirroringType::Horizontal);
|
|
} else {
|
|
SelectPRGPage(0, (value >> 3) & 0x01);
|
|
SelectCHRPage(0, value & 0x07);
|
|
}
|
|
}
|
|
}
|
|
|
|
public:
|
|
Nina03_06(bool multicartMode) : _multicartMode(multicartMode)
|
|
{
|
|
}
|
|
}; |