Mapper 116 support
This commit is contained in:
parent
ae6ffb3e7d
commit
2929a7c738
4 changed files with 308 additions and 0 deletions
|
@ -535,6 +535,7 @@
|
|||
<ClInclude Include="Kaiser7017.h" />
|
||||
<ClInclude Include="Kaiser7031.h" />
|
||||
<ClInclude Include="KeyManager.h" />
|
||||
<ClInclude Include="Mapper116.h" />
|
||||
<ClInclude Include="MMC3_198.h" />
|
||||
<ClInclude Include="MovieRecorder.h" />
|
||||
<ClInclude Include="AsciiTurboFile.h" />
|
||||
|
|
|
@ -1405,6 +1405,9 @@
|
|||
<ClInclude Include="Kaiser7031.h">
|
||||
<Filter>Nes\Mappers\Unif</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Mapper116.h">
|
||||
<Filter>Nes\Mappers\Unnamed</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="stdafx.cpp">
|
||||
|
|
302
Core/Mapper116.h
Normal file
302
Core/Mapper116.h
Normal file
|
@ -0,0 +1,302 @@
|
|||
#pragma once
|
||||
#include "stdafx.h"
|
||||
#include "BaseMapper.h"
|
||||
#include "CPU.h"
|
||||
#include "A12Watcher.h"
|
||||
|
||||
class Mapper116 : public BaseMapper
|
||||
{
|
||||
private:
|
||||
A12Watcher _a12Watcher;
|
||||
uint8_t _mode;
|
||||
|
||||
uint8_t _vrc2Chr[8];
|
||||
uint8_t _vrc2Prg[2];
|
||||
uint8_t _vrc2Mirroring;
|
||||
|
||||
uint8_t _mmc3Regs[10];
|
||||
uint8_t _mmc3Ctrl;
|
||||
uint8_t _mmc3Mirroring;
|
||||
|
||||
uint8_t _mmc1Regs[4];
|
||||
uint8_t _mmc1Buffer;
|
||||
uint8_t _mmc1Shift;
|
||||
|
||||
uint8_t _irqCounter;
|
||||
uint8_t _irqReloadValue;
|
||||
bool _irqReload;
|
||||
bool _irqEnabled;
|
||||
|
||||
protected:
|
||||
virtual uint16_t RegisterStartAddress() override { return 0x4100; }
|
||||
virtual uint16_t RegisterEndAddress() override { return 0xFFFF; }
|
||||
virtual uint16_t GetPRGPageSize() override { return 0x2000; }
|
||||
virtual uint16_t GetCHRPageSize() override { return 0x400; }
|
||||
|
||||
void InitMapper() override
|
||||
{
|
||||
_mode = 0;
|
||||
|
||||
_vrc2Chr[0] = -1;
|
||||
_vrc2Chr[1] = -1;
|
||||
_vrc2Chr[2] = -1;
|
||||
_vrc2Chr[3] = -1;
|
||||
_vrc2Chr[4] = 4;
|
||||
_vrc2Chr[5] = 5;
|
||||
_vrc2Chr[6] = 6;
|
||||
_vrc2Chr[7] = 7;
|
||||
_vrc2Prg[0] = 0;
|
||||
_vrc2Prg[1] = 1;
|
||||
_vrc2Mirroring = 0;
|
||||
|
||||
_mmc3Regs[0] = 0;
|
||||
_mmc3Regs[1] = 2;
|
||||
_mmc3Regs[2] = 4;
|
||||
_mmc3Regs[3] = 5;
|
||||
_mmc3Regs[4] = 6;
|
||||
_mmc3Regs[5] = 7;
|
||||
_mmc3Regs[6] = -4;
|
||||
_mmc3Regs[7] = -3;
|
||||
_mmc3Regs[8] = -2;
|
||||
_mmc3Regs[9] = -1;
|
||||
_mmc3Ctrl = 0;
|
||||
_mmc3Mirroring = 0;
|
||||
_irqCounter = 0;
|
||||
_irqReloadValue = 0;
|
||||
_irqEnabled = false;
|
||||
_irqReload = false;
|
||||
|
||||
_mmc1Regs[0] = 0xc;
|
||||
_mmc1Regs[1] = 0;
|
||||
_mmc1Regs[2] = 0;
|
||||
_mmc1Regs[3] = 0;
|
||||
_mmc1Buffer = 0;
|
||||
_mmc1Shift = 0;
|
||||
|
||||
UpdateState();
|
||||
}
|
||||
|
||||
void StreamState(bool saving) override
|
||||
{
|
||||
BaseMapper::StreamState(saving);
|
||||
|
||||
SnapshotInfo a12Watcher { &_a12Watcher };
|
||||
ArrayInfo<uint8_t> vrc2Chr { _vrc2Chr, 8 };
|
||||
ArrayInfo<uint8_t> vrc2Prg { _vrc2Prg, 2 };
|
||||
ArrayInfo<uint8_t> mmc3Regs { _mmc3Regs, 10 };
|
||||
ArrayInfo<uint8_t> mmc1Regs { _mmc1Regs, 4 };
|
||||
|
||||
Stream(_mode, a12Watcher,
|
||||
vrc2Chr, vrc2Prg, _vrc2Mirroring,
|
||||
mmc3Regs, _mmc3Ctrl, _mmc3Mirroring, _irqCounter, _irqEnabled, _irqReload, _irqReloadValue,
|
||||
mmc1Regs, _mmc1Buffer, _mmc1Shift
|
||||
);
|
||||
}
|
||||
|
||||
virtual void NotifyVRAMAddressChange(uint16_t addr) override
|
||||
{
|
||||
if((_mode & 0x03) == 1) {
|
||||
switch(_a12Watcher.UpdateVramAddress(addr)) {
|
||||
case A12StateChange::Rise:
|
||||
uint32_t count = _irqCounter;
|
||||
if(_irqCounter == 0 || _irqReload) {
|
||||
_irqCounter = _irqReloadValue;
|
||||
} else {
|
||||
_irqCounter--;
|
||||
}
|
||||
|
||||
if(_irqCounter == 0 && _irqEnabled) {
|
||||
CPU::SetIRQSource(IRQSource::External);
|
||||
}
|
||||
_irqReload = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void UpdatePrg()
|
||||
{
|
||||
switch(_mode & 0x03) {
|
||||
case 0:
|
||||
SelectPRGPage(0, _vrc2Prg[0]);
|
||||
SelectPRGPage(1, _vrc2Prg[1]);
|
||||
SelectPRGPage(2, -2);
|
||||
SelectPRGPage(3, -1);
|
||||
break;
|
||||
|
||||
case 1: {
|
||||
uint32_t prgMode = (_mmc3Ctrl >> 5) & 0x02;
|
||||
SelectPRGPage(0, _mmc3Regs[6 + prgMode]);
|
||||
SelectPRGPage(1, _mmc3Regs[7]);
|
||||
SelectPRGPage(2, _mmc3Regs[6 + (prgMode ^ 0x02)]);
|
||||
SelectPRGPage(3, _mmc3Regs[9]);
|
||||
break;
|
||||
}
|
||||
|
||||
case 2:
|
||||
case 3: {
|
||||
uint8_t bank = _mmc1Regs[3] & 0x0F;
|
||||
if(_mmc1Regs[0] & 0x08) {
|
||||
if(_mmc1Regs[0] & 0x04) {
|
||||
SelectPrgPage2x(0, bank << 1);
|
||||
SelectPrgPage2x(1, 0x0F << 1);
|
||||
} else {
|
||||
SelectPrgPage2x(0, 0);
|
||||
SelectPrgPage2x(1, bank << 1);
|
||||
}
|
||||
} else {
|
||||
SelectPrgPage4x(0, (bank & 0xFE) << 1);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void UpdateChr()
|
||||
{
|
||||
uint32_t outerBank = (_mode & 0x04) << 6;
|
||||
switch(_mode & 0x03) {
|
||||
case 0:
|
||||
for(int i = 0; i < 8; i++) {
|
||||
SelectCHRPage(i, outerBank | _vrc2Chr[i]);
|
||||
}
|
||||
break;
|
||||
|
||||
case 1: {
|
||||
uint32_t slotSwap = (_mmc3Ctrl & 0x80) ? 4 : 0;
|
||||
SelectCHRPage(0 ^ slotSwap, outerBank | ((_mmc3Regs[0]) & 0xFE));
|
||||
SelectCHRPage(1 ^ slotSwap, outerBank | (_mmc3Regs[0] | 1));
|
||||
SelectCHRPage(2 ^ slotSwap, outerBank | ((_mmc3Regs[1]) & 0xFE));
|
||||
SelectCHRPage(3 ^ slotSwap, outerBank | (_mmc3Regs[1] | 1));
|
||||
SelectCHRPage(4 ^ slotSwap, outerBank | _mmc3Regs[2]);
|
||||
SelectCHRPage(5 ^ slotSwap, outerBank | _mmc3Regs[3]);
|
||||
SelectCHRPage(6 ^ slotSwap, outerBank | _mmc3Regs[4]);
|
||||
SelectCHRPage(7 ^ slotSwap, outerBank | _mmc3Regs[5]);
|
||||
break;
|
||||
}
|
||||
|
||||
case 2:
|
||||
case 3: {
|
||||
if(_mmc1Regs[0] & 0x10) {
|
||||
SelectChrPage4x(0, _mmc1Regs[1] << 2);
|
||||
SelectChrPage4x(1, _mmc1Regs[2] << 2);
|
||||
} else {
|
||||
SelectChrPage8x(0, (_mmc1Regs[1] & 0xFE) << 2);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void UpdateMirroring()
|
||||
{
|
||||
switch(_mode & 0x03) {
|
||||
case 0: SetMirroringType((_vrc2Mirroring & 0x01) ? MirroringType::Horizontal : MirroringType::Vertical); break;
|
||||
case 1: SetMirroringType((_mmc3Mirroring & 0x01) ? MirroringType::Horizontal : MirroringType::Vertical); break;
|
||||
|
||||
case 2:
|
||||
case 3:
|
||||
switch(_mmc1Regs[0] & 0x03) {
|
||||
case 0: SetMirroringType(MirroringType::ScreenAOnly); break;
|
||||
case 1: SetMirroringType(MirroringType::ScreenBOnly); break;
|
||||
case 2: SetMirroringType(MirroringType::Vertical); break;
|
||||
case 3: SetMirroringType(MirroringType::Horizontal); break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void UpdateState()
|
||||
{
|
||||
UpdatePrg();
|
||||
UpdateChr();
|
||||
UpdateMirroring();
|
||||
}
|
||||
|
||||
void WriteVrc2Register(uint16_t addr, uint8_t value)
|
||||
{
|
||||
if(addr >= 0xB000 && addr <= 0xE003) {
|
||||
int32_t regIndex = ((((addr & 0x02) | (addr >> 10)) >> 1) + 2) & 0x07;
|
||||
int32_t lowHighNibble = ((addr & 1) << 2);
|
||||
_vrc2Chr[regIndex] = (_vrc2Chr[regIndex] & (0xF0 >> lowHighNibble)) | ((value & 0x0F) << lowHighNibble);
|
||||
UpdateChr();
|
||||
} else {
|
||||
switch(addr & 0xF000) {
|
||||
case 0x8000: _vrc2Prg[0] = value; UpdatePrg(); break;
|
||||
case 0xA000: _vrc2Prg[1] = value; UpdatePrg(); break;
|
||||
case 0x9000: _vrc2Mirroring = value; UpdateMirroring(); break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void WriteMmc3Register(uint16_t addr, uint8_t value)
|
||||
{
|
||||
switch(addr & 0xE001) {
|
||||
case 0x8000:
|
||||
_mmc3Ctrl = value;
|
||||
UpdateState();
|
||||
break;
|
||||
|
||||
case 0x8001:
|
||||
_mmc3Regs[_mmc3Ctrl & 0x07] = value;
|
||||
UpdateState();
|
||||
break;
|
||||
|
||||
case 0xA000:
|
||||
_mmc3Mirroring = value;
|
||||
UpdateState();
|
||||
break;
|
||||
|
||||
case 0xC000: _irqReloadValue = value; break;
|
||||
case 0xC001: _irqReload = true; break;
|
||||
|
||||
case 0xE000:
|
||||
CPU::ClearIRQSource(IRQSource::External);
|
||||
_irqEnabled = false;
|
||||
break;
|
||||
|
||||
case 0xE001: _irqEnabled = true; break;
|
||||
}
|
||||
}
|
||||
|
||||
void WriteMmc1Register(uint16_t addr, uint8_t value)
|
||||
{
|
||||
if(value & 0x80) {
|
||||
_mmc1Regs[0] |= 0xc;
|
||||
_mmc1Buffer = _mmc1Shift = 0;
|
||||
UpdateState();
|
||||
} else {
|
||||
uint8_t regIndex = (addr >> 13) - 4;
|
||||
_mmc1Buffer |= (value & 0x01) << (_mmc1Shift++);
|
||||
if(_mmc1Shift == 5) {
|
||||
_mmc1Regs[regIndex] = _mmc1Buffer;
|
||||
_mmc1Buffer = _mmc1Shift = 0;
|
||||
UpdateState();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void WriteRegister(uint16_t addr, uint8_t value) override
|
||||
{
|
||||
if(addr < 0x8000) {
|
||||
if((addr & 0x4100) == 0x4100) {
|
||||
_mode = value;
|
||||
if(addr & 0x01) {
|
||||
_mmc1Regs[0] = 0xc;
|
||||
_mmc1Regs[3] = 0;
|
||||
_mmc1Buffer = 0;
|
||||
_mmc1Shift = 0;
|
||||
}
|
||||
UpdateState();
|
||||
}
|
||||
} else {
|
||||
switch(_mode & 0x03) {
|
||||
case 0: WriteVrc2Register(addr, value); break;
|
||||
case 1: WriteMmc3Register(addr, value); break;
|
||||
|
||||
case 2:
|
||||
case 3: WriteMmc1Register(addr, value); break;
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
|
@ -101,6 +101,7 @@
|
|||
#include "Mapper107.h"
|
||||
#include "Mapper108.h"
|
||||
#include "Mapper112.h"
|
||||
#include "Mapper116.h"
|
||||
#include "Mapper117.h"
|
||||
#include "Mapper120.h"
|
||||
#include "Mapper170.h"
|
||||
|
@ -399,6 +400,7 @@ BaseMapper* MapperFactory::GetMapperFromID(RomData &romData)
|
|||
case 113: return new Nina03_06(true);
|
||||
case 114: return new MMC3_114();
|
||||
case 115: return new MMC3_115();
|
||||
case 116: return new Mapper116();
|
||||
case 117: return new Mapper117();
|
||||
case 118: return new TxSRom();
|
||||
case 119: return new MMC3_ChrRam(0x40, 0x7F, 8);
|
||||
|
|
Loading…
Add table
Reference in a new issue