mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-27 11:00:50 +00:00
26 lines
529 B
C++
26 lines
529 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "BaseMapper.h"
|
|
|
|
class Gs2013 : public BaseMapper
|
|
{
|
|
protected:
|
|
uint16_t GetPRGPageSize() override { return 0x2000; }
|
|
uint16_t GetCHRPageSize() override { return 0x2000; }
|
|
|
|
void InitMapper() override
|
|
{
|
|
SelectCHRPage(0, 0);
|
|
}
|
|
|
|
void Reset(bool softReset) override
|
|
{
|
|
SetCpuMemoryMapping(0x6000, 0x7FFF, 0x1F, PrgMemoryType::PrgRom);
|
|
SelectPrgPage4x(0, 0x0F << 2);
|
|
}
|
|
|
|
void WriteRegister(uint16_t addr, uint8_t value) override
|
|
{
|
|
SelectPrgPage4x(0, (value & 0x0F) << 2);
|
|
}
|
|
}; |