Bit more W65816 disassembler cleanup

This commit is contained in:
nattthebear 2020-07-12 17:14:47 -04:00
parent 316a9d1568
commit 570f17cedd
1 changed files with 1 additions and 4 deletions

View File

@ -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)
{
byte opcode = peek(addr);
string ibuf = null;
string ibuf;
string pbuf;
int offset = -1, sval = -1;
@ -472,9 +472,6 @@ namespace BizHawk.Emulation.Cores.Components.W65816
offset = 3;
}
break;
default:
length = 1;
return "???";
}
StringBuilder sb = new StringBuilder();