mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-23 09:09:45 +00:00
38 lines
825 B
C++
38 lines
825 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "BaseMapper.h"
|
|
|
|
class BmcG146 : public BaseMapper
|
|
{
|
|
protected:
|
|
uint16_t GetPRGPageSize() override { return 0x4000; }
|
|
uint16_t GetCHRPageSize() override { return 0x2000; }
|
|
|
|
void InitMapper() override
|
|
{
|
|
}
|
|
|
|
void Reset(bool softReset) override
|
|
{
|
|
BaseMapper::Reset(softReset);
|
|
|
|
WriteRegister(0x8000, 0);
|
|
SelectCHRPage(0, 0);
|
|
}
|
|
|
|
void WriteRegister(uint16_t addr, uint8_t value) override
|
|
{
|
|
if(addr & 0x800) {
|
|
SelectPRGPage(0, (addr & 0x1F) | (addr & ((addr & 0x40) >> 6)));
|
|
SelectPRGPage(1, (addr & 0x18) | 0x07);
|
|
} else {
|
|
if(addr & 0x40) {
|
|
SelectPRGPage(0, addr & 0x1F);
|
|
SelectPRGPage(1, addr & 0x1F);
|
|
} else {
|
|
SelectPrgPage2x(0, addr & 0x1E);
|
|
}
|
|
}
|
|
SetMirroringType(addr & 0x80 ? MirroringType::Horizontal : MirroringType::Vertical);
|
|
}
|
|
}; |