Changed 32010 unknown opcode to output in $xxx format like

all other hex values.
This commit is contained in:
Aaron Giles 2009-10-31 19:50:29 +00:00
parent 721087eeeb
commit a2a25f17e3

View File

@ -255,7 +255,7 @@ CPU_DISASSEMBLE( tms32010 )
}
if (op == -1)
{
sprintf(buffer,"???? dw %04Xh",code);
sprintf(buffer, "dw $%04X (invalid op)", code);
return cnt | DASMFLAG_SUPPORTED;
}
buffertmp = buffer;