PCE Core - fix SystemBus memory domain size

This commit is contained in:
adelikat 2012-03-11 19:16:04 +00:00
parent 41b1d3c82a
commit 643c742266
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ namespace BizHawk.Emulation.Consoles.TurboGrafx
(addr, value) => Ram[addr & 0x1FFF] = value);
domains.Add(MainMemoryDomain);
var SystemBusDomain = new MemoryDomain("System Bus", 0x2F0000, Endian.Little,
var SystemBusDomain = new MemoryDomain("System Bus", 0x200000, Endian.Little,
addr => Cpu.ReadMemory21(addr),
(addr, value) => Cpu.WriteMemory21(addr, value));
domains.Add(SystemBusDomain);