From 807edebe6d16e990da5ab95569a277deacf46901 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sat, 27 May 2017 20:40:13 -0400 Subject: [PATCH] A7800Hawk another round of commits --- .../Atari/A7800Hawk/A7800Hawk.IEmulator.cs | 23 ++++++++++++++++++- .../A7800Hawk/A7800Hawk.IMemoryDomains.cs | 10 ++++---- .../Consoles/Atari/A7800Hawk/A7800Hawk.cs | 14 ++++++++++- .../Consoles/Atari/A7800Hawk/Maria.cs | 16 +++++++++---- .../Consoles/Atari/A7800Hawk/MemoryMap.cs | 22 +++++++++++------- 5 files changed, 67 insertions(+), 18 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IEmulator.cs b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IEmulator.cs index 0022c69bed..c739349520 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IEmulator.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IEmulator.cs @@ -8,6 +8,11 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk public ControllerDefinition ControllerDefinition { get; private set; } + //Maria related variables + public int cycle; + public int cpu_cycle; + public int scanline; + public void FrameAdvance(IController controller, bool render, bool rendersound) { _frame++; @@ -24,7 +29,23 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk _lagcount++; } - maria.FrameAdvance(); + scanline = 0; + + // actually execute the frame + while (scanline < 263) + { + maria.Execute(cycle, scanline); + cycle++; + cpu_cycle++; + + + if (cycle == 454) + { + scanline++; + cycle = 0; + } + } + } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IMemoryDomains.cs index 72735171c0..3d7d86a4f4 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IMemoryDomains.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.IMemoryDomains.cs @@ -43,7 +43,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk 1), new MemoryDomainDelegate( "Ram Block 0", - 0xB, + 0xB0, MemoryDomain.Endian.Little, addr => RAM[addr-0x840], (addr, value) => RAM[addr-0x840] = value, @@ -51,7 +51,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk ), new MemoryDomainDelegate( "Ram Block 1", - 0xB, + 0xB0, MemoryDomain.Endian.Little, addr => RAM[addr-0x940], (addr, value) => RAM[addr-0x940] = value, @@ -73,12 +73,14 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk private byte PeekSystemBus(long addr) { - return 0; + ushort addr2 = (ushort)(addr & 0xFFFF); + return ReadMemory(addr2); } private void PokeSystemBus(long addr, byte value) { - + ushort addr2 = (ushort)(addr & 0xFFFF); + WriteMemory(addr2, value); } } } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.cs b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.cs index 98ba8e591b..1ea8b6aea8 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/A7800Hawk.cs @@ -50,6 +50,11 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk ser.Register(tia); ServiceProvider = ser; + maria = new Maria + { + ReadMemory = ReadMemory + }; + CoreComm = comm; byte[] highscoreBios = comm.CoreFileProvider.GetFirmware("A78", "Bios_HSC", false, "Some functions may not work without the high score BIOS."); byte[] palBios = comm.CoreFileProvider.GetFirmware("A78", "Bios_PAL", false, "The game will not run if the correct region BIOS is not available."); @@ -128,9 +133,16 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk tia.Reset(); cpu.Reset(); + cpu.SetCallbacks(ReadMemory, ReadMemory, ReadMemory, WriteMemory); + maria.Reset(); m6532 = new M6532(); - } + + TIA_regs = new byte[0x20]; + Maria_regs = new byte[0x20]; + RAM = new byte[0x1000]; + regs_6532 = new byte[0x80]; + } /* * MariaTables.cs diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Maria.cs b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Maria.cs index 395fffb671..a142a32bb7 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Maria.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Maria.cs @@ -25,17 +25,25 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk public int VsyncNumerator => _frameHz; public int VsyncDenominator => 1; - //Maria related variables - public int cycle; + // the Maria chip can directly access memory + public Func ReadMemory; - public void FrameAdvance() + // there are 4 maria cycles in a CPU cycle (fast access, both NTSC and PAL) + // if the 6532 or TIA are accessed (PC goes to one of those addresses) the next access will be slower by 1/2 a CPU cycle + // i.e. it will take 6 Maria cycles instead of 4 + public bool slow_access = false; + + // each frame contains 263 scanlines + // each scanline consists of 113.5 CPU cycles (fast access) which equates to 454 Maria cycles + // In total there are 29850.5 CPU cycles (fast access) in a frame + public void Execute(int cycle, int scanline) { } public void Reset() { - cycle = 0; + } } diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/MemoryMap.cs b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/MemoryMap.cs index 9bf21bbcb9..64f6211966 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/MemoryMap.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/MemoryMap.cs @@ -8,10 +8,8 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk { public partial class A7800Hawk { - public byte ReadMemory(int addr) + public byte ReadMemory(ushort addr) { - addr &= 0xFFFF; - if (addr < 0x0400) { if ((addr & 0xFF) < 0x20) { @@ -27,7 +25,14 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk } else if ((addr & 0xFF) < 0x40) { - return Maria_regs[(addr & 0x3F) - 0x20]; + if ((A7800_control_register & 0x2) > 0) + { + return Maria_regs[(addr & 0x3F) - 0x20]; + } + else + { + return 0xFF; + } } else if (addr < 0x100) { @@ -75,10 +80,8 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk } } - public void WriteMemory(int addr, byte value) + public void WriteMemory(ushort addr, byte value) { - addr &= 0xFFFF; - if (addr < 0x0400) { if ((addr & 0xFF) < 0x20) @@ -95,7 +98,10 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk } else if ((addr & 0xFF) < 0x40) { - Maria_regs[(addr & 0x3F) - 0x20] = value; + if ((A7800_control_register & 0x2) > 0) + { + Maria_regs[(addr & 0x3F) - 0x20] = value; + } } else if (addr < 0x100) {