1
0
Fork 0

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:
Peter Veenstra 2011-12-28 11:36:44 +00:00
parent b148583132
commit 5062d2f4ad

View file

@ -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) */