diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/AxROM.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/AxROM.cs index d670c906ea..28dd117a49 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/AxROM.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/AxROM.cs @@ -58,13 +58,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES } prg_mask_32k = Cart.prg_size / 32 - 1; - - // hardware tests show that only 256kb of PRG is possible to acess - if (Cart.prg_size>256) - { - prg_mask_32k = 256 / 32 - 1; - } - SetMirrorType(NES.NESBoardBase.EMirrorType.OneScreenA); return true; @@ -98,4 +91,4 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES } } -} +} \ No newline at end of file