Mesen/Core/DreamTech01.h

24 lines
545 B
C
Raw Normal View History

2016-11-06 17:07:02 +00:00
#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class DreamTech01 : public BaseMapper
{
protected:
2016-12-18 04:14:47 +00:00
uint16_t GetPRGPageSize() override { return 0x4000; }
uint16_t GetCHRPageSize() override { return 0x2000; }
uint16_t RegisterStartAddress() override { return 0x5020; }
uint16_t RegisterEndAddress() override { return 0x5020; }
2016-11-06 17:07:02 +00:00
void InitMapper() override
{
SelectPRGPage(0, 0);
SelectPRGPage(1, 8);
SelectCHRPage(0, 0);
}
void WriteRegister(uint16_t addr, uint8_t value) override
{
SelectPRGPage(0, value & 0x07);
}
};