Make Gambatte use new disassembler
This commit is contained in:
parent
69170fb110
commit
b0095927b6
|
@ -1,7 +1,7 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
using BizHawk.Emulation.Common;
|
||||
using BizHawk.Emulation.Common.Components.Z80GB;
|
||||
using BizHawk.Emulation.Common.Components.LR35902;
|
||||
|
||||
namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
|
||||
{
|
||||
|
@ -17,7 +17,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
|
|||
public override string Disassemble(MemoryDomain m, uint addr, out int length)
|
||||
{
|
||||
ushort tmp;
|
||||
string ret = NewDisassembler.Disassemble((ushort)addr, a => m.PeekByte(a), out tmp);
|
||||
string ret = LR35902.Disassemble((ushort)addr, a => m.PeekByte(a), out tmp);
|
||||
length = tmp;
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
|
||||
using BizHawk.Emulation.Common;
|
||||
using BizHawk.Emulation.Common.Components.Z80GB;
|
||||
using BizHawk.Emulation.Common.Components.LR35902;
|
||||
|
||||
namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
|
||||
{
|
||||
|
@ -19,8 +19,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.Gameboy
|
|||
Tracer.Put(new TraceInfo
|
||||
{
|
||||
Disassembly =
|
||||
NewDisassembler
|
||||
.Disassemble((ushort)s[1], addr => LibGambatte.gambatte_cpuread(GambatteState, addr), out unused)
|
||||
LR35902.Disassemble((ushort)s[1], addr => LibGambatte.gambatte_cpuread(GambatteState, addr), out unused)
|
||||
.PadRight(36),
|
||||
RegisterInfo =
|
||||
string.Format(
|
||||
|
|
Loading…
Reference in New Issue