From fbee96c76b5e6531053d9ee04d7ae04958bd1297 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sun, 13 Dec 2020 19:49:04 -0500 Subject: [PATCH] GPGX: Allow writing to rom memory domains Don't let the diff fool you, a massive amount of work went into making this possible. --- .../Consoles/Sega/gpgx64/GPGX.IMemoryDomains.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.IMemoryDomains.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.IMemoryDomains.cs index b76e32fac9..e7511ccf31 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.IMemoryDomains.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.IMemoryDomains.cs @@ -52,7 +52,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx else { // TODO: are the Z80 domains really Swap16 in the core? Check this - mm.Add(new MemoryDomainIntPtrSwap16Monitor(name, endian, area, size, name != "MD CART" && name != "CD BOOT ROM", _elf)); + mm.Add(new MemoryDomainIntPtrSwap16Monitor(name, endian, area, size, true, _elf)); } } var m68Bus = new MemoryDomainDelegate("M68K BUS", 0x1000000, MemoryDomain.Endian.Big,