GPGX remove an exception for debugging

The core can handle this case just fine so there doesn't appear to be a need for it anyway
This commit is contained in:
alyosha-tas 2017-04-14 21:44:15 -04:00 committed by GitHub
parent b6f335e4c8
commit 96ac5d1122
1 changed files with 4 additions and 4 deletions

View File

@ -53,15 +53,15 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
delegate (long addr)
{
var a = (uint)addr;
if (a >= 0x1000000)
throw new ArgumentOutOfRangeException();
//if (a >= 0x1000000)
//throw new ArgumentOutOfRangeException();
return LibGPGX.gpgx_peek_m68k_bus(a);
},
delegate (long addr, byte val)
{
var a = (uint)addr;
if (a >= 0x1000000)
throw new ArgumentOutOfRangeException();
//if (a >= 0x1000000)
//throw new ArgumentOutOfRangeException();
LibGPGX.gpgx_write_m68k_bus(a, val);
}, 2);