Skip to content

Commit

Permalink
GPGX remove an exception for debugging
Browse files Browse the repository at this point in the history
The core can handle this case just fine so there doesn't appear to be a need for it anyway
  • Loading branch information
alyosha-tas committed Apr 15, 2017
1 parent b6f335e commit 96ac5d1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ private unsafe void SetMemoryDomains()
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);

Expand Down

0 comments on commit 96ac5d1

Please sign in to comment.