fix build error (maybe some new c# thing)
This commit is contained in:
parent
62c178ff2e
commit
642bc13e84
|
@ -23,7 +23,8 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
|
||||||
{
|
{
|
||||||
var regs = DebuggableCore.GetCpuFlagsAndRegisters();
|
var regs = DebuggableCore.GetCpuFlagsAndRegisters();
|
||||||
uint pc = (uint)regs["M68K PC"].Value;
|
uint pc = (uint)regs["M68K PC"].Value;
|
||||||
var disasm = Disassembler.Disassemble(MemoryDomains.SystemBus, pc & 0xFFFFFF, out int length);
|
int length;
|
||||||
|
var disasm = Disassembler.Disassemble(MemoryDomains.SystemBus, pc & 0xFFFFFF, out length);
|
||||||
|
|
||||||
var traceInfo = new TraceInfo
|
var traceInfo = new TraceInfo
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue