try to make new pce "rom" domain writable

This commit is contained in:
zeromus 2014-02-09 06:57:54 +00:00
parent 5dac0660e1
commit f98e1a942d
1 changed files with 6 additions and 0 deletions

View File

@ -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,