Improve handling of prefix 0xf in the debugger. Thanks ripsaw
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3770
This commit is contained in:
parent
b148583132
commit
5062d2f4ad
1 changed files with 3 additions and 1 deletions
|
@ -949,7 +949,9 @@ static void percent(char type, char subtype)
|
|||
break;
|
||||
|
||||
case '2': /* old [pop cs]! now indexes */
|
||||
ua_str(second[getbyte()]); /* instructions in 386/486 */
|
||||
c = getbyte();
|
||||
wordop = c & 1;
|
||||
ua_str(second[c]); /* instructions in 386/486 */
|
||||
break;
|
||||
|
||||
case 'g': /* modrm group `subtype' (0--7) */
|
||||
|
|
Loading…
Add table
Reference in a new issue