From 76a51ca79d5484b7e84ac3c75835c8999cefa6b8 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Wed, 5 Jul 2017 16:11:24 -0400 Subject: [PATCH] A7800Hawk: Core Cleanup --- .../Atari/A7800Hawk/Mappers/MapperDefault.cs | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Mappers/MapperDefault.cs b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Mappers/MapperDefault.cs index a92a98d8d3..5260bdcb7f 100644 --- a/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Mappers/MapperDefault.cs +++ b/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Mappers/MapperDefault.cs @@ -10,15 +10,10 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk { public override byte ReadMemory(ushort addr) { - if (addr < 0x480) - { - // Nothing here - return 0xFF; - } - else if (addr < 0x1800) + if (addr >=0x1000 && addr < 0x1800) { //could be hsbios RAM here - if (addr >= 0x1000 && Core._hsbios != null) + if (Core._hsbios != null) { return Core._hsram[addr - 0x1000]; } @@ -49,7 +44,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk } else { - return 0xFF; + return 0x00; } } } @@ -61,14 +56,10 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk public override void WriteMemory(ushort addr, byte value) { - if (addr < 0x480) - { - // Nothing here - } - else if (addr < 0x1800) + if (addr >= 0x1000 && addr < 0x1800) { //could be hsbios RAM here - if (addr >= 0x1000 && Core._hsbios != null) + if (Core._hsbios != null) { Core._hsram[addr - 0x1000] = value; }