185 lines
4.5 KiB
C#
185 lines
4.5 KiB
C#
|
using System.IO;
|
||
|
|
||
|
namespace MyNes.Core
|
||
|
{
|
||
|
[BoardInfo("MMC3 Variant", 189, true, true)]
|
||
|
internal class Mapper189 : Board
|
||
|
{
|
||
|
private bool flag_c;
|
||
|
|
||
|
private bool flag_p;
|
||
|
|
||
|
private int address_8001;
|
||
|
|
||
|
private int[] chr_reg;
|
||
|
|
||
|
private int prg_reg;
|
||
|
|
||
|
private bool irq_enabled;
|
||
|
|
||
|
private byte irq_counter;
|
||
|
|
||
|
private int old_irq_counter;
|
||
|
|
||
|
private byte irq_reload;
|
||
|
|
||
|
private bool irq_clear;
|
||
|
|
||
|
private bool mmc3_alt_behavior;
|
||
|
|
||
|
internal override void HardReset()
|
||
|
{
|
||
|
base.HardReset();
|
||
|
flag_c = (flag_p = false);
|
||
|
address_8001 = 0;
|
||
|
prg_reg = 0;
|
||
|
chr_reg = new int[6];
|
||
|
for (int i = 0; i < 6; i++)
|
||
|
{
|
||
|
chr_reg[i] = 0;
|
||
|
}
|
||
|
irq_enabled = false;
|
||
|
irq_counter = 0;
|
||
|
irq_reload = byte.MaxValue;
|
||
|
old_irq_counter = 0;
|
||
|
irq_clear = false;
|
||
|
}
|
||
|
|
||
|
internal override void WriteEX(ref ushort address, ref byte data)
|
||
|
{
|
||
|
Switch32KPRG(((data & 0xF0) >> 4) | (data & 0xF), PRGArea.Area8000);
|
||
|
}
|
||
|
|
||
|
internal override void WriteSRM(ref ushort address, ref byte data)
|
||
|
{
|
||
|
Switch32KPRG(((data & 0xF0) >> 4) | (data & 0xF), PRGArea.Area8000);
|
||
|
}
|
||
|
|
||
|
internal override void WritePRG(ref ushort address, ref byte data)
|
||
|
{
|
||
|
switch (address & 0xE001)
|
||
|
{
|
||
|
case 32768:
|
||
|
address_8001 = data & 7;
|
||
|
flag_c = (data & 0x80) != 0;
|
||
|
flag_p = (data & 0x40) != 0;
|
||
|
SetupCHR();
|
||
|
break;
|
||
|
case 32769:
|
||
|
{
|
||
|
int num = address_8001;
|
||
|
if ((uint)num <= 5u)
|
||
|
{
|
||
|
chr_reg[address_8001] = data;
|
||
|
SetupCHR();
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
case 40960:
|
||
|
if (NMT_DEFAULT_MIRROR != Mirroring.Full)
|
||
|
{
|
||
|
Switch01KNMTFromMirroring(((data & 1) == 1) ? Mirroring.Horz : Mirroring.Vert);
|
||
|
}
|
||
|
break;
|
||
|
case 40961:
|
||
|
TogglePRGRAMEnable((data & 0x80) != 0);
|
||
|
TogglePRGRAMWritableEnable((data & 0x40) == 0);
|
||
|
break;
|
||
|
case 49152:
|
||
|
irq_reload = data;
|
||
|
break;
|
||
|
case 49153:
|
||
|
if (mmc3_alt_behavior)
|
||
|
{
|
||
|
irq_clear = true;
|
||
|
}
|
||
|
irq_counter = 0;
|
||
|
break;
|
||
|
case 57344:
|
||
|
irq_enabled = false;
|
||
|
NesEmu.IRQFlags &= -9;
|
||
|
break;
|
||
|
case 57345:
|
||
|
irq_enabled = true;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void SetupCHR()
|
||
|
{
|
||
|
if (!flag_c)
|
||
|
{
|
||
|
Switch02KCHR(chr_reg[0] >> 1, CHRArea.Area0000);
|
||
|
Switch02KCHR(chr_reg[1] >> 1, CHRArea.Area0800);
|
||
|
Switch01KCHR(chr_reg[2], CHRArea.Area1000);
|
||
|
Switch01KCHR(chr_reg[3], CHRArea.Area1400);
|
||
|
Switch01KCHR(chr_reg[4], CHRArea.Area1800);
|
||
|
Switch01KCHR(chr_reg[5], CHRArea.Area1C00);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
Switch02KCHR(chr_reg[0] >> 1, CHRArea.Area1000);
|
||
|
Switch02KCHR(chr_reg[1] >> 1, CHRArea.Area1800);
|
||
|
Switch01KCHR(chr_reg[2], CHRArea.Area0000);
|
||
|
Switch01KCHR(chr_reg[3], CHRArea.Area0400);
|
||
|
Switch01KCHR(chr_reg[4], CHRArea.Area0800);
|
||
|
Switch01KCHR(chr_reg[5], CHRArea.Area0C00);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
internal override void OnPPUA12RaisingEdge()
|
||
|
{
|
||
|
old_irq_counter = irq_counter;
|
||
|
if (irq_counter == 0 || irq_clear)
|
||
|
{
|
||
|
irq_counter = irq_reload;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
irq_counter--;
|
||
|
}
|
||
|
if ((!mmc3_alt_behavior || old_irq_counter != 0 || irq_clear) && irq_counter == 0 && irq_enabled)
|
||
|
{
|
||
|
NesEmu.IRQFlags |= 8;
|
||
|
}
|
||
|
irq_clear = false;
|
||
|
}
|
||
|
|
||
|
internal override void WriteStateData(ref BinaryWriter stream)
|
||
|
{
|
||
|
base.WriteStateData(ref stream);
|
||
|
stream.Write(flag_c);
|
||
|
stream.Write(flag_p);
|
||
|
stream.Write(address_8001);
|
||
|
for (int i = 0; i < chr_reg.Length; i++)
|
||
|
{
|
||
|
stream.Write(chr_reg[i]);
|
||
|
}
|
||
|
stream.Write(prg_reg);
|
||
|
stream.Write(irq_enabled);
|
||
|
stream.Write(irq_counter);
|
||
|
stream.Write(old_irq_counter);
|
||
|
stream.Write(irq_reload);
|
||
|
stream.Write(irq_clear);
|
||
|
}
|
||
|
|
||
|
internal override void ReadStateData(ref BinaryReader stream)
|
||
|
{
|
||
|
base.ReadStateData(ref stream);
|
||
|
flag_c = stream.ReadBoolean();
|
||
|
flag_p = stream.ReadBoolean();
|
||
|
address_8001 = stream.ReadInt32();
|
||
|
for (int i = 0; i < chr_reg.Length; i++)
|
||
|
{
|
||
|
chr_reg[i] = stream.ReadInt32();
|
||
|
}
|
||
|
prg_reg = stream.ReadInt32();
|
||
|
irq_enabled = stream.ReadBoolean();
|
||
|
irq_counter = stream.ReadByte();
|
||
|
old_irq_counter = stream.ReadInt32();
|
||
|
irq_reload = stream.ReadByte();
|
||
|
irq_clear = stream.ReadBoolean();
|
||
|
}
|
||
|
}
|
||
|
}
|