Bit more W65816 disassembler cleanup
This commit is contained in:
parent
316a9d1568
commit
570f17cedd
|
@ -44,7 +44,7 @@ namespace BizHawk.Emulation.Cores.Components.W65816
|
||||||
public string Disassemble(uint addr, Func<long, byte> peek, ref byte P, out int length)
|
public string Disassemble(uint addr, Func<long, byte> peek, ref byte P, out int length)
|
||||||
{
|
{
|
||||||
byte opcode = peek(addr);
|
byte opcode = peek(addr);
|
||||||
string ibuf = null;
|
string ibuf;
|
||||||
string pbuf;
|
string pbuf;
|
||||||
int offset = -1, sval = -1;
|
int offset = -1, sval = -1;
|
||||||
|
|
||||||
|
@ -472,9 +472,6 @@ namespace BizHawk.Emulation.Cores.Components.W65816
|
||||||
offset = 3;
|
offset = 3;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
|
||||||
length = 1;
|
|
||||||
return "???";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
|
|
Loading…
Reference in New Issue