Atari7800Hawk, wire up the disassembler, default to this core instead of emu7800
This commit is contained in:
parent
2ff7ae06ea
commit
49fc7223e6
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue