Atari7800Hawk, wire up the disassembler, default to this core instead of emu7800

This commit is contained in:
adelikat 2017-08-04 15:56:35 -05:00
parent 2ff7ae06ea
commit 49fc7223e6
2 changed files with 3 additions and 2 deletions

View File

@ -542,7 +542,7 @@ namespace BizHawk.Client.Common
public bool NES_InQuickNES = true;
public bool SNES_InSnes9x = true;
public bool GBA_UsemGBA = true;
public bool A78_UseEmu7800 = true;
public bool A78_UseEmu7800 = false;
public bool SGB_UseBsnes = false;
public bool CoreForcingViaGameDB = true;
public string LibretroCore;

View File

@ -231,7 +231,8 @@ namespace BizHawk.Emulation.Cores.Atari.A7800Hawk
ser.Register<ITraceable>(_tracer);
SetupMemoryDomains();
HardReset();
ser.Register<IDisassemblable>(cpu);
HardReset();
}
public DisplayType Region => _isPAL ? DisplayType.PAL : DisplayType.NTSC;