Mesen2/Core/NES/Mappers/Unlicensed/Malee.h
2022-09-08 21:29:52 -04:00

22 lines
No EOL
442 B
C++

#pragma once
#include "pch.h"
#include "NES/BaseMapper.h"
class Malee : public BaseMapper
{
protected:
uint16_t GetPrgPageSize() override { return 0x800; }
uint16_t GetChrPageSize() override { return 0x2000; }
void InitMapper() override
{
SelectPrgPage4x(0, 0);
SelectPrgPage4x(1, 4);
SelectPrgPage4x(2, 8);
SelectPrgPage4x(3, 12);
SelectChrPage(0, 0);
SetCpuMemoryMapping(0x6000, 0x67FF, 16, PrgMemoryType::PrgRom);
}
};