commodore64: only initialize RAM array on instantiation, memory already cleared in HardReset
This commit is contained in:
parent
e44c6cfa55
commit
46e13a6a57
|
@ -22,13 +22,12 @@ namespace BizHawk.Emulation.Computers.Commodore64.MOS
|
||||||
|
|
||||||
public Chip4864()
|
public Chip4864()
|
||||||
{
|
{
|
||||||
|
ram = new byte[0x10000];
|
||||||
HardReset();
|
HardReset();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void HardReset()
|
public void HardReset()
|
||||||
{
|
{
|
||||||
ram = new byte[0x10000];
|
|
||||||
|
|
||||||
// stripe the ram
|
// stripe the ram
|
||||||
for (int i = 0; i < 10000; i++)
|
for (int i = 0; i < 10000; i++)
|
||||||
ram[i] = ((i & 0x40) != 0) ? (byte)0xFF : (byte)0x00;
|
ram[i] = ((i & 0x40) != 0) ? (byte)0xFF : (byte)0x00;
|
||||||
|
|
Loading…
Reference in New Issue