mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-27 19:10:21 +00:00
107 lines
2.4 KiB
C++
107 lines
2.4 KiB
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "BaseMapper.h"
|
|
|
|
class TaitoX1005 : public BaseMapper
|
|
{
|
|
private:
|
|
bool _alternateMirroring;
|
|
uint8_t _ramPermission;
|
|
|
|
void UpdateRamAccess()
|
|
{
|
|
SetCpuMemoryMapping(0x7F00, 0x7FFF, 0, HasBattery() ? PrgMemoryType::SaveRam : PrgMemoryType::WorkRam, _ramPermission == 0xA3 ? MemoryAccessType::ReadWrite : MemoryAccessType::NoAccess);
|
|
}
|
|
|
|
protected:
|
|
virtual uint16_t GetPRGPageSize() { return 0x2000; }
|
|
virtual uint16_t GetCHRPageSize() { return 0x0400; }
|
|
virtual uint16_t RegisterStartAddress() { return 0x7EF0; }
|
|
virtual uint16_t RegisterEndAddress() { return 0x7EFF; }
|
|
|
|
virtual uint32_t GetWorkRamSize() { return 0x100; }
|
|
virtual uint32_t GetWorkRamPageSize() { return 0x100; }
|
|
virtual uint32_t GetSaveRamSize() { return 0x100; }
|
|
virtual uint32_t GetSaveRamPageSize() { return 0x100; }
|
|
|
|
void InitMapper()
|
|
{
|
|
_ramPermission = 0;
|
|
|
|
SelectPRGPage(3, -1);
|
|
|
|
UpdateRamAccess();
|
|
}
|
|
|
|
virtual bool ForceBattery()
|
|
{
|
|
//Patch: Force battery, because some headers are marked as having no battery even though the game expects one
|
|
return true;
|
|
}
|
|
|
|
void WriteRegister(uint16_t addr, uint8_t value)
|
|
{
|
|
switch(addr) {
|
|
case 0x7EF0:
|
|
SelectCHRPage(0, value);
|
|
SelectCHRPage(1, value + 1);
|
|
if(_alternateMirroring) {
|
|
SetNametable(0, value >> 7);
|
|
SetNametable(1, value >> 7);
|
|
}
|
|
break;
|
|
case 0x7EF1:
|
|
SelectCHRPage(2, value );
|
|
SelectCHRPage(3, value + 1);
|
|
if(_alternateMirroring) {
|
|
SetNametable(2, value >> 7);
|
|
SetNametable(3, value >> 7);
|
|
}
|
|
break;
|
|
|
|
case 0x7EF2: SelectCHRPage(4, value); break;
|
|
case 0x7EF3: SelectCHRPage(5, value); break;
|
|
case 0x7EF4: SelectCHRPage(6, value); break;
|
|
case 0x7EF5: SelectCHRPage(7, value); break;
|
|
|
|
case 0x7EF6: case 0x7EF7:
|
|
if(!_alternateMirroring) {
|
|
SetMirroringType((value & 0x01) == 0x01 ? MirroringType::Vertical : MirroringType::Horizontal);
|
|
}
|
|
break;
|
|
|
|
case 0x7EF8: case 0x7EF9:
|
|
_ramPermission = value;
|
|
UpdateRamAccess();
|
|
break;
|
|
|
|
case 0x7EFA: case 0x7EFB:
|
|
SelectPRGPage(0, value);
|
|
break;
|
|
|
|
case 0x7EFC: case 0x7EFD:
|
|
SelectPRGPage(1, value);
|
|
break;
|
|
|
|
case 0x7EFE: case 0x7EFF:
|
|
SelectPRGPage(2, value);
|
|
break;
|
|
}
|
|
}
|
|
|
|
virtual void StreamState(bool saving)
|
|
{
|
|
BaseMapper::StreamState(saving);
|
|
Stream<uint8_t>(_ramPermission);
|
|
|
|
if(!saving) {
|
|
UpdateRamAccess();
|
|
}
|
|
}
|
|
|
|
public:
|
|
TaitoX1005(bool alternateMirroring) : _alternateMirroring(alternateMirroring)
|
|
{
|
|
|
|
}
|
|
}; |