From f98e1a942d884203c32612e3e2e4b11401dbf1cb Mon Sep 17 00:00:00 2001 From: zeromus Date: Sun, 9 Feb 2014 06:57:54 +0000 Subject: [PATCH] try to make new pce "rom" domain writable --- BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs index a5de0b9811..41b8d872f1 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs @@ -565,6 +565,12 @@ namespace BizHawk.Emulation.Cores.PCEngine (addr, value) => Cpu.WriteMemory21(addr, value)); domains.Add(SystemBusDomain); + var RomDomain = new MemoryDomain("ROM", RomLength, MemoryDomain.Endian.Little, + addr => RomData[addr], + (addr, value) => RomData[addr] = value); + domains.Add(RomDomain); + + if (BRAM != null) { var BRAMMemoryDomain = new MemoryDomain("Battery RAM", Ram.Length, MemoryDomain.Endian.Little,