mirror of
https://github.com/holub/mame
synced 2025-05-25 15:25:33 +03:00
fix dasm for two code and prefix opcode in real time encryption
This commit is contained in:
parent
8dcedabb57
commit
7800d2bb70
@ -1460,7 +1460,6 @@ static void decode_opcode(char *s, const I386_OPCODE *op, UINT8 op1 )
|
|||||||
{
|
{
|
||||||
case TWO_BYTE:
|
case TWO_BYTE:
|
||||||
op2 = FETCHD();
|
op2 = FETCHD();
|
||||||
if (Iconfig->v25v35_decryptiontable) op2 = Iconfig->v25v35_decryptiontable[op2];
|
|
||||||
decode_opcode( s, &necv_opcode_table2[op2], op1 );
|
decode_opcode( s, &necv_opcode_table2[op2], op1 );
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@ -1477,7 +1476,6 @@ static void decode_opcode(char *s, const I386_OPCODE *op, UINT8 op1 )
|
|||||||
case PREFIX:
|
case PREFIX:
|
||||||
s += sprintf( s, "%-8s", op->mnemonic );
|
s += sprintf( s, "%-8s", op->mnemonic );
|
||||||
op2 = FETCH();
|
op2 = FETCH();
|
||||||
if (Iconfig->v25v35_decryptiontable) op2 = Iconfig->v25v35_decryptiontable[op2];
|
|
||||||
decode_opcode( s, &necv_opcode_table1[op2], op1 );
|
decode_opcode( s, &necv_opcode_table1[op2], op1 );
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user