mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-23 17:19:39 +00:00
68 lines
1.5 KiB
C++
68 lines
1.5 KiB
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "BaseMapper.h"
|
|
|
|
class Mapper234 : public BaseMapper
|
|
{
|
|
private:
|
|
uint8_t _regs[2];
|
|
|
|
protected:
|
|
virtual uint16_t RegisterStartAddress() { return 0xFF80; }
|
|
virtual uint16_t RegisterEndAddress() { return 0xFF9F; }
|
|
virtual uint16_t GetPRGPageSize() { return 0x8000; }
|
|
virtual uint16_t GetCHRPageSize() { return 0x2000; }
|
|
virtual bool AllowRegisterRead() { return true; }
|
|
virtual bool HasBusConflicts() { return true; }
|
|
|
|
void InitMapper()
|
|
{
|
|
AddRegisterRange(0xFFE8, 0xFFF8, MemoryOperation::Any);
|
|
memset(_regs, 0, sizeof(_regs));
|
|
UpdateState();
|
|
}
|
|
|
|
void UpdateState()
|
|
{
|
|
if(_regs[0] & 0x40) {
|
|
//NINA-03 mode
|
|
SelectPRGPage(0, (_regs[0] & 0x0E) | (_regs[1] & 0x01));
|
|
SelectCHRPage(0, ((_regs[0] << 2) & 0x38) | (_regs[1] >> 4) & 0x07);
|
|
} else {
|
|
//CNROM mode
|
|
SelectPRGPage(0, _regs[0] & 0x0F);
|
|
SelectCHRPage(0, ((_regs[0] << 2) & 0x3C) | (_regs[1] >> 4) & 0x03);
|
|
}
|
|
|
|
SetMirroringType(_regs[0] & 0x80 ? MirroringType::Horizontal : MirroringType::Vertical);
|
|
}
|
|
|
|
uint8_t ReadRegister(uint16_t addr)
|
|
{
|
|
uint8_t value = InternalReadRam(addr);
|
|
if(addr <= 0xFF9F) {
|
|
if(!(_regs[0] & 0x3F)) {
|
|
_regs[0] = value;
|
|
UpdateState();
|
|
}
|
|
} else {
|
|
_regs[1] = value & 0x71;
|
|
UpdateState();
|
|
}
|
|
|
|
return value;
|
|
}
|
|
|
|
void WriteRegister(uint16_t addr, uint8_t value)
|
|
{
|
|
if(addr <= 0xFF9F) {
|
|
if(!(_regs[0] & 0x3F)) {
|
|
_regs[0] = value;
|
|
UpdateState();
|
|
}
|
|
} else {
|
|
_regs[1] = value & 0x71;
|
|
UpdateState();
|
|
}
|
|
}
|
|
}; |