Remove remnants of old fake opcodes.

These are illegal opcodes, and should be treated as such.
This commit is contained in:
magumagu 2015-03-13 01:34:52 -07:00
parent 2916aed1f9
commit 87dcda5785
8 changed files with 25 additions and 73 deletions

View file

@ -1196,26 +1196,6 @@ u32* GekkoDisassembler::DoDisassembly(bool big_endian)
switch (PPCGETIDX(in))
{
case 0:
{
int block = in & 0x3FFFFFF;
if (block)
{
m_opcode = "JITblock";
m_operands = StringFromFormat("%i", block);
}
else
{
m_opcode = "";
m_operands = "---";
}
}
break;
case 1: // HLE call
m_opcode = "HLE";
break;
case 2:
trapi(in, PPCF_64); // tdi
break;