todo: N64 - learn to spell, fix cheats not defaulting to the system bus

This commit is contained in:
adelikat 2015-01-12 23:38:31 +00:00
parent 21f5209726
commit 815cf4ab97
1 changed files with 9 additions and 8 deletions

View File

@ -123,6 +123,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
{ {
return api.m64p_read_memory_8((uint)addr); return api.m64p_read_memory_8((uint)addr);
}; };
pokeByte = delegate(int addr, byte val) pokeByte = delegate(int addr, byte val)
{ {
api.m64p_write_memory_8((uint)addr, val); api.m64p_write_memory_8((uint)addr, val);
@ -130,7 +131,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
_memoryDomains.Add(new MemoryDomain _memoryDomains.Add(new MemoryDomain
( (
name: "Sytem Bus", name: "System Bus",
size: 0, //special case for full 32bit memorydomain size: 0, //special case for full 32bit memorydomain
endian: MemoryDomain.Endian.Big, endian: MemoryDomain.Endian.Big,
peekByte: peekByte, peekByte: peekByte,