Small bug with not showing correct 32bit regname with %Ec
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@543
This commit is contained in:
parent
943b4e81d3
commit
f768cce587
1 changed files with 1 additions and 1 deletions
|
@ -662,7 +662,7 @@ static void reg_name(int regnum, char size)
|
|||
uprintf("st(%d)", regnum);
|
||||
return;
|
||||
}
|
||||
if (((size == 'v') && (opsize == 32)) || (size == 'd'))
|
||||
if ((((size == 'c') || (size == 'v')) && (opsize == 32)) || (size == 'd'))
|
||||
uputchar('e');
|
||||
if ((size=='q' || size == 'b' || size=='c') && !wordop) {
|
||||
uputchar("acdbacdb"[regnum]);
|
||||
|
|
Loading…
Add table
Reference in a new issue