diff --git a/BizHawk.Emulation/Computers/Commodore64/MOS/Chip4864.cs b/BizHawk.Emulation/Computers/Commodore64/MOS/Chip4864.cs index 94f65b541a..1a7a0b3b20 100644 --- a/BizHawk.Emulation/Computers/Commodore64/MOS/Chip4864.cs +++ b/BizHawk.Emulation/Computers/Commodore64/MOS/Chip4864.cs @@ -22,13 +22,12 @@ namespace BizHawk.Emulation.Computers.Commodore64.MOS public Chip4864() { + ram = new byte[0x10000]; HardReset(); } public void HardReset() { - ram = new byte[0x10000]; - // stripe the ram for (int i = 0; i < 10000; i++) ram[i] = ((i & 0x40) != 0) ? (byte)0xFF : (byte)0x00;