ColecoHawk: Add remainder of SGM domain

This commit is contained in:
alyosha-tas 2018-07-07 08:14:51 -04:00
parent 0e58e36b67
commit 994e415a1b
1 changed files with 5 additions and 2 deletions

View File

@ -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();