mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-23 09:09:45 +00:00
19 lines
353 B
C++
19 lines
353 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "BaseMapper.h"
|
|
|
|
class NROM : public BaseMapper
|
|
{
|
|
protected:
|
|
virtual uint16_t GetPRGPageSize() override { return 0x4000; }
|
|
virtual uint16_t GetCHRPageSize() override { return 0x2000; }
|
|
|
|
virtual void InitMapper() override
|
|
{
|
|
SelectPRGPage(0, 0);
|
|
SelectPRGPage(1, 1);
|
|
|
|
SelectCHRPage(0, 0);
|
|
}
|
|
};
|