Atari 2600 - make the system bus 64k instead of 8k, this is technically more correct, even though all that space is just mirrored data
This commit is contained in:
parent
62cb922a81
commit
6512dcbd62
|
@ -31,7 +31,7 @@ namespace BizHawk.Emulation.Cores.Atari.Atari2600
|
|||
(addr, value) => M6532.WriteMemory((ushort)addr, value)),
|
||||
new MemoryDomain(
|
||||
"System Bus",
|
||||
8192,
|
||||
65536,
|
||||
MemoryDomain.Endian.Little,
|
||||
addr => _mapper.PeekMemory((ushort) addr),
|
||||
(addr, value) => _mapper.PokeMemory((ushort) addr, value))
|
||||
|
|
Loading…
Reference in New Issue