Mesen/Core/Sachen_149.h

20 lines
365 B
C
Raw Normal View History

2015-12-31 16:04:26 +00:00
#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class Sachen_149 : public BaseMapper
{
protected:
virtual uint16_t GetPRGPageSize() { return 0x8000; }
virtual uint16_t GetCHRPageSize() { return 0x2000; }
void InitMapper()
{
SelectPRGPage(0, 0);
}
void WriteRegister(uint16_t addr, uint8_t value)
{
SelectCHRPage(0, (value >> 7) & 0x01);
}
};