mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-23 17:19:39 +00:00
22 lines
414 B
C++
22 lines
414 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "BaseMapper.h"
|
|
|
|
class Malee : public BaseMapper
|
|
{
|
|
protected:
|
|
uint16_t GetPRGPageSize() { return 0x800; }
|
|
uint16_t GetCHRPageSize() { return 0x2000; }
|
|
|
|
void InitMapper()
|
|
{
|
|
SelectPrgPage4x(0, 0);
|
|
SelectPrgPage4x(1, 4);
|
|
SelectPrgPage4x(2, 8);
|
|
SelectPrgPage4x(3, 12);
|
|
|
|
SelectCHRPage(0, 0);
|
|
|
|
SetCpuMemoryMapping(0x6000, 0x67FF, 16, PrgMemoryType::PrgRom);
|
|
}
|
|
}; |