From 994e415a1b554e6c2b4c2d11b27bbcb34ced1306 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sat, 7 Jul 2018 08:14:51 -0400 Subject: [PATCH] ColecoHawk: Add remainder of SGM domain --- .../Consoles/Coleco/ColecoVision.IMemoryDomains.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IMemoryDomains.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IMemoryDomains.cs index 52da6f992f..dc5501642d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IMemoryDomains.cs +++ b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.IMemoryDomains.cs @@ -39,8 +39,11 @@ namespace BizHawk.Emulation.Cores.ColecoVision if (use_SGM) { - var SGMRam = new MemoryDomainByteArray("SGM RAM", MemoryDomain.Endian.Little, SGM_high_RAM, true, 1); - domains.Add(SGMRam); + var SGMLRam = new MemoryDomainByteArray("SGM Low RAM", MemoryDomain.Endian.Little, SGM_low_RAM, true, 1); + domains.Add(SGMLRam); + + var SGMHRam = new MemoryDomainByteArray("SGM High RAM", MemoryDomain.Endian.Little, SGM_high_RAM, true, 1); + domains.Add(SGMHRam); } SyncAllByteArrayDomains();