A7800Hawk: Start Supergame Mappers

This commit is contained in:
alyosha-tas 2017-07-19 19:19:00 -04:00 committed by GitHub
parent ee7b0bf20c
commit 16467c3cb0
1 changed files with 5 additions and 1 deletions

View File

@ -41,7 +41,7 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk
public MOS6502X cpu;
public Maria maria;
private bool _isPAL;
public bool _isPAL;
public M6532 m6532;
public TIA tia;
@ -189,6 +189,10 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk
{
mapper = new MapperDefault();
}
if (m=="A78SG")
{
mapper = new MapperSG();
}
mapper.Core = this;
}