Mesen2/Core/NES/Mappers/Bandai/OekaKids.h
2024-09-26 22:41:57 +09:00

55 lines
1.2 KiB
C++

#pragma once
#include "pch.h"
#include "NES/BaseMapper.h"
#include "Utilities/Serializer.h"
class OekaKids : public BaseMapper
{
uint8_t _outerChrBank = 0;
uint8_t _innerChrBank = 0;
uint16_t _lastAddress = 0;
protected:
uint16_t GetPrgPageSize() override { return 0x8000; }
uint16_t GetChrPageSize() override { return 0x1000; }
bool HasBusConflicts() override { return true; }
bool EnableVramAddressHook() override { return true; }
void InitMapper() override
{
_outerChrBank = 0;
_innerChrBank = 0;
_lastAddress = 0;
SelectPrgPage(0, 0);
}
void Serialize(Serializer& s) override
{
BaseMapper::Serialize(s);
SV(_outerChrBank); SV(_innerChrBank); SV(_lastAddress);
}
void UpdateChrBanks()
{
SelectChrPage(0, _outerChrBank | _innerChrBank);
SelectChrPage(1, _outerChrBank | 0x03);
}
void NotifyVramAddressChange(uint16_t addr) override
{
if((_lastAddress & 0x3000) != 0x2000 && (addr & 0x3000) == 0x2000) {
_innerChrBank = (addr >> 8) & 0x03;
UpdateChrBanks();
}
_lastAddress = addr;
}
void WriteRegister(uint16_t addr, uint8_t value) override
{
SelectPrgPage(0, value & 0x03);
_outerChrBank = value & 0x04;
UpdateChrBanks();
}
};