From fbfe28ed7678fe3de4519ca429983737d0da8e00 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Thu, 9 Feb 2017 12:53:11 -0500 Subject: [PATCH] Intellivision implement System Bus memory domain --- .../Consoles/Intellivision/Cartridge.cs | 4 +- .../Consoles/Intellivision/ICart.cs | 4 +- .../Consoles/Intellivision/Intellicart.cs | 4 +- .../Intellivision.IMemoryDomains.cs | 44 +++++++++++++++-- .../Intellivision/Intellivision.MemoryMap.cs | 22 +++++---- .../Consoles/Intellivision/PSG.cs | 8 ++-- .../Consoles/Intellivision/STIC.cs | 48 +++++++++---------- 7 files changed, 87 insertions(+), 47 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Cartridge.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Cartridge.cs index 87f3f68079..17bbc9e02c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Cartridge.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Cartridge.cs @@ -59,7 +59,7 @@ namespace BizHawk.Emulation.Cores.Intellivision return Rom.Length; } - public ushort? ReadCart(ushort addr) + public ushort? ReadCart(ushort addr, bool peek) { switch (mapper) { @@ -213,7 +213,7 @@ namespace BizHawk.Emulation.Cores.Intellivision return null; } - public bool WriteCart(ushort addr, ushort value) + public bool WriteCart(ushort addr, ushort value, bool poke) { switch (mapper) { diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/ICart.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/ICart.cs index 98a2f5437e..e05b236cf8 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/ICart.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/ICart.cs @@ -5,8 +5,8 @@ namespace BizHawk.Emulation.Cores.Intellivision public interface ICart { int Parse(byte[] Rom); - ushort? ReadCart(ushort addr); - bool WriteCart(ushort addr, ushort value); + ushort? ReadCart(ushort addr, bool peek); + bool WriteCart(ushort addr, ushort value, bool poke); void SyncState(Serializer ser); } diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellicart.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellicart.cs index 20d4783935..8ea6be881d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellicart.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellicart.cs @@ -156,7 +156,7 @@ namespace BizHawk.Emulation.Cores.Intellivision return offset; } - public ushort? ReadCart(ushort addr) + public ushort? ReadCart(ushort addr, bool peek) { int range = addr / 2048; bool[] attributes = MemoryAttributes[range]; @@ -167,7 +167,7 @@ namespace BizHawk.Emulation.Cores.Intellivision return null; } - public bool WriteCart(ushort addr, ushort value) + public bool WriteCart(ushort addr, ushort value, bool poke) { int range = addr / 2048; bool[] attributes = MemoryAttributes[range]; diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IMemoryDomains.cs index eca129c035..d7180345dd 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IMemoryDomains.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.IMemoryDomains.cs @@ -46,11 +46,19 @@ namespace BizHawk.Emulation.Cores.Intellivision ), new MemoryDomainDelegate( "Executive Rom", - SystemRam.Length * 2, + ExecutiveRom.Length * 2, MemoryDomain.Endian.Little, addr => ReadByteFromShortArray(addr, ExecutiveRom), (addr, value) => WriteByteToShortArray(addr, value, ExecutiveRom), 1 + ), + new MemoryDomainDelegate( + "System Bus", + 0X20000, + MemoryDomain.Endian.Little, + addr => PeekSystemBus(addr), + (addr, value) => PokeSystemBus(addr, value), + 1 ) }; @@ -58,8 +66,38 @@ namespace BizHawk.Emulation.Cores.Intellivision (ServiceProvider as BasicServiceProvider).Register(MemoryDomains); } - // TODO: move these to a common library and maybe add an endian parameter - // Little endian + private byte PeekSystemBus(long addr) + { + if (addr % 2 == 0) + { + long index = addr / 2; + return (byte)(ReadMemory((ushort)index, true) >> 8); + } + else + { + long index = (addr - 1) / 2; + return (byte)(ReadMemory((ushort)index, true) & 0xFF); + } + } + + private void PokeSystemBus(long addr, byte value) + { + if (addr % 2 == 0) + { + long index = addr / 2; + int temp = (ReadMemory((ushort)index, true) >> 8); + WriteMemory((ushort)index, (ushort)(temp & (value << 8)), true); + } + else + { + long index = (addr - 1) / 2; + int temp = ((ReadMemory((ushort)index, true) & 0xFF)<<8); + WriteMemory((ushort)index, (ushort)(temp & value), true); + } + } + + // TODO: move these to a common library and maybe add an endian parameter + // Little endian private byte ReadByteFromShortArray(long addr, ushort[] array) { if (addr % 2 == 0) diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.MemoryMap.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.MemoryMap.cs index 5ce5881148..2bab10b2be 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.MemoryMap.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/Intellivision.MemoryMap.cs @@ -12,11 +12,11 @@ namespace BizHawk.Emulation.Cores.Intellivision public byte[] GraphicsRom = new byte[2048]; public byte[] GraphicsRam = new byte[512]; - public ushort ReadMemory(ushort addr) + public ushort ReadMemory(ushort addr, bool peek) { - ushort? cart = _cart.ReadCart(addr); - ushort? stic = _stic.ReadSTIC(addr); - ushort? psg = _psg.ReadPSG(addr); + ushort? cart = _cart.ReadCart(addr, peek); + ushort? stic = _stic.ReadSTIC(addr, peek); + ushort? psg = _psg.ReadPSG(addr, peek); ushort? core = null; switch (addr & 0xF000) @@ -43,12 +43,14 @@ namespace BizHawk.Emulation.Cores.Intellivision //controllers if (addr==0x01FE) { - islag = false; + if (!peek) + islag = false; return _psg.Register[14]; } if (addr == 0x01FF) { - islag = false; + if (!peek) + islag = false; return _psg.Register[15]; } break; @@ -207,11 +209,11 @@ namespace BizHawk.Emulation.Cores.Intellivision return UNMAPPED; } - public bool WriteMemory(ushort addr, ushort value) + public bool WriteMemory(ushort addr, ushort value, bool poke) { - bool cart = _cart.WriteCart(addr, value); - bool stic = _stic.WriteSTIC(addr, value); - bool psg = _psg.WritePSG(addr, value); + bool cart = _cart.WriteCart(addr, value, poke); + bool stic = _stic.WriteSTIC(addr, value, poke); + bool psg = _psg.WritePSG(addr, value, poke); switch (addr & 0xF000) { case 0x0000: diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/PSG.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/PSG.cs index 416aea1fee..5930f94b2e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/PSG.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/PSG.cs @@ -95,8 +95,8 @@ namespace BizHawk.Emulation.Cores.Intellivision public int noise_per; public int noise=0x1; - public Func ReadMemory; - public Func WriteMemory; + public Func ReadMemory; + public Func WriteMemory; public void SyncState(Serializer ser) { @@ -125,7 +125,7 @@ namespace BizHawk.Emulation.Cores.Intellivision ser.EndSection(); } - public ushort? ReadPSG(ushort addr) + public ushort? ReadPSG(ushort addr, bool peek) { if (addr >= 0x01F0 && addr <= 0x01FF) { @@ -185,7 +185,7 @@ namespace BizHawk.Emulation.Cores.Intellivision env_vol_C = (Register[13] >> 4) & 0x3; } - public bool WritePSG(ushort addr, ushort value) + public bool WritePSG(ushort addr, ushort value, bool poke) { if (addr >= 0x01F0 && addr <= 0x01FF) { diff --git a/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs b/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs index 17db8ee000..99c1f1c27d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs +++ b/BizHawk.Emulation.Cores/Consoles/Intellivision/STIC.cs @@ -19,8 +19,8 @@ namespace BizHawk.Emulation.Cores.Intellivision public int TotalExecutedCycles; public int PendingCycles; - public Func ReadMemory; - public Func WriteMemory; + public Func ReadMemory; + public Func WriteMemory; private static int BORDER_OFFSET=176*8; @@ -88,7 +88,7 @@ namespace BizHawk.Emulation.Cores.Intellivision for (int i=0;i<64;i++) { - write_reg(i, 0); + write_reg(i, 0, false); } } @@ -113,7 +113,7 @@ namespace BizHawk.Emulation.Cores.Intellivision } // mask off appropriate STIC bits and write to register - private void write_reg(int reg, ushort value) + private void write_reg(int reg, ushort value, bool poke) { if (reg < 0x8) @@ -159,29 +159,29 @@ namespace BizHawk.Emulation.Cores.Intellivision } Register[reg] = value; - if (reg==0x21) + if (reg==0x21 && !poke) { Fgbg = true; } - if (reg==0x20) + if (reg==0x20 && !poke) { active_display = true; } - if (reg==0x2C) + if (reg==0x2C && !poke) { Update_Border(); } } - public ushort? ReadSTIC(ushort addr) + public ushort? ReadSTIC(ushort addr, bool peek) { switch (addr & 0xF000) { case 0x0000: if (addr <= 0x003F && (in_vb_1 | !active_display)) { - if (addr == 0x0021) + if (addr == 0x0021 && !peek) { Fgbg = false; } @@ -195,7 +195,7 @@ namespace BizHawk.Emulation.Cores.Intellivision case 0x4000: if ((addr <= 0x403F) && (in_vb_1 | !active_display)) { - if (addr == 0x4021) + if (addr == 0x4021 && !peek) { Fgbg = false; } @@ -204,7 +204,7 @@ namespace BizHawk.Emulation.Cores.Intellivision case 0x8000: if ((addr <= 0x803F) && (in_vb_1 | !active_display)) { - if (addr == 0x8021) + if (addr == 0x8021 && !peek) { Fgbg = false; } @@ -213,7 +213,7 @@ namespace BizHawk.Emulation.Cores.Intellivision case 0xC000: if ((addr <= 0xC03F) && (in_vb_1 | !active_display)) { - if (addr == 0xC021) + if (addr == 0xC021 && !peek) { Fgbg = false; } @@ -223,35 +223,35 @@ namespace BizHawk.Emulation.Cores.Intellivision return null; } - public bool WriteSTIC(ushort addr, ushort value) + public bool WriteSTIC(ushort addr, ushort value, bool poke) { switch (addr & 0xF000) { case 0x0000: if (addr <= 0x003F && (in_vb_1 | !active_display)) { - write_reg(addr, value); + write_reg(addr, value, poke); return true; } break; case 0x4000: if (addr <= 0x403F && (in_vb_1 | !active_display)) { - write_reg(addr-0x4000, value); + write_reg(addr-0x4000, value, poke); return true; } break; case 0x8000: if (addr <= 0x803F && (in_vb_1 | !active_display)) { - write_reg(addr-0x8000, value); + write_reg(addr-0x8000, value, poke); return true; } break; case 0xC000: if (addr <= 0xC03F && (in_vb_1 | !active_display)) { - write_reg(addr-0xC000, value); + write_reg(addr-0xC000, value, poke); return true; } break; @@ -312,7 +312,7 @@ namespace BizHawk.Emulation.Cores.Intellivision { int buffer_offset = (card_row * 159 * 8) + (card_col * 8); // The cards are stored sequentially in the System RAM. - ushort card = ReadMemory((ushort)(0x0200 + (card_row * 20) + card_col)); + ushort card = ReadMemory((ushort)(0x0200 + (card_row * 20) + card_col), false); // Parse data from the card. bool gram = ((card & 0x0800) != 0); int card_num = card >> 3; @@ -433,11 +433,11 @@ namespace BizHawk.Emulation.Cores.Intellivision byte row; if (gram) { - row = (byte)ReadMemory((ushort)(0x3800 + row_mem)); + row = (byte)ReadMemory((ushort)(0x3800 + row_mem), false); } else { - row = (byte)ReadMemory((ushort)(0x3000 + row_mem)); + row = (byte)ReadMemory((ushort)(0x3000 + row_mem), false); } for (int pict_col = 0; pict_col < 8; pict_col++) { @@ -595,11 +595,11 @@ namespace BizHawk.Emulation.Cores.Intellivision { if (gram) { - row = (byte)ReadMemory((ushort)(0x3800 + 8 * card + j)); + row = (byte)ReadMemory((ushort)(0x3800 + 8 * card + j), false); } else { - row = (byte)ReadMemory((ushort)(0x3000 + 8 * card + j)); + row = (byte)ReadMemory((ushort)(0x3000 + 8 * card + j), false); } mobs[j] = row; @@ -612,11 +612,11 @@ namespace BizHawk.Emulation.Cores.Intellivision { if (gram) { - row = (byte)ReadMemory((ushort)(0x3800 + 8 * (card + 1) + j)); + row = (byte)ReadMemory((ushort)(0x3800 + 8 * (card + 1) + j), false); } else { - row = (byte)ReadMemory((ushort)(0x3000 + 8 * (card + 1) + j)); + row = (byte)ReadMemory((ushort)(0x3000 + 8 * (card + 1) + j), false); } y_mobs[j] = row;