Mesen-X/Core/UNROM.h
2014-06-24 14:28:19 -04:00

25 lines
No EOL
443 B
C++

#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class UNROM : public BaseMapper
{
protected:
virtual uint32_t GetPRGPageSize() { return 0x4000; }
virtual uint32_t GetCHRPageSize() { return 0x2000; }
void InitMapper()
{
//First and last PRG page
SelectPRGPage(0, 0);
SelectPRGPage(1, -1);
SelectCHRPage(0, 0);
}
public:
void WriteRAM(uint16_t addr, uint8_t value)
{
SelectPRGPage(0, value);
}
};