Mesen/Core/Bs5.h

35 lines
702 B
C++

#pragma once
#include "stdafx.h"
#include "BaseMapper.h"
class Bs5 : public BaseMapper
{
protected:
uint32_t GetDipSwitchCount() override { return 2; }
uint16_t GetPRGPageSize() override { return 0x2000; }
uint16_t GetCHRPageSize() override { return 0x800; }
void InitMapper() override
{
for(int i = 0; i < 4; i++) {
SelectPRGPage(i, -1);
SelectCHRPage(i, -1);
}
}
void WriteRegister(uint16_t addr, uint8_t value) override
{
int bank = (addr >> 10) & 0x03;
switch(addr & 0xF000) {
case 0x8000:
SelectCHRPage(bank, addr & 0x1F);
break;
case 0xA000:
if(addr & (1 << (GetDipSwitches() + 4))) {
SelectPRGPage(bank, addr & 0x0F);
}
break;
}
}
};