mirror of
https://github.com/holub/mame
synced 2025-05-24 23:05:32 +03:00
i386dasm.c: Corrected display of debug registers (D0-D7) in disassembly listings [Barry Rodewald]
This commit is contained in:
parent
2accc3da6e
commit
3b13698e25
@ -1584,6 +1584,10 @@ static char* handle_param(char* s, UINT32 param)
|
|||||||
s += sprintf( s, "tr%d", MODRM_REG1 | regex );
|
s += sprintf( s, "tr%d", MODRM_REG1 | regex );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case PARAM_DREG:
|
||||||
|
s += sprintf( s, "dr%d", MODRM_REG1 | regex );
|
||||||
|
break;
|
||||||
|
|
||||||
case PARAM_1:
|
case PARAM_1:
|
||||||
s += sprintf( s, "1" );
|
s += sprintf( s, "1" );
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user