Fix 32-bit LSL instruction and remove some logging messages for debug registers
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1465
This commit is contained in:
parent
6d1d97b139
commit
2ef1879ac5
2 changed files with 1 additions and 3 deletions
|
@ -142,7 +142,6 @@
|
|||
{
|
||||
GetRM;
|
||||
Bitu which=(rm >> 3) & 7;
|
||||
LOG_MSG("MOV REG,DR%d",which);
|
||||
if (rm >= 0xc0 ) {
|
||||
GetEArd;
|
||||
} else {
|
||||
|
@ -168,7 +167,6 @@
|
|||
{
|
||||
GetRM;
|
||||
Bitu which=(rm >> 3) & 7;
|
||||
LOG_MSG("MOV DR%d,REG",which);
|
||||
if (rm >= 0xc0 ) {
|
||||
GetEArd;
|
||||
} else {
|
||||
|
|
|
@ -120,7 +120,7 @@
|
|||
} else {
|
||||
GetEAa;CPU_LSL(LoadMw(eaa),limit);
|
||||
}
|
||||
*rmrd=(Bit16u)limit;
|
||||
*rmrd=(Bit32u)limit;
|
||||
}
|
||||
break;
|
||||
CASE_0F_D(0x80) /* JO */
|
||||
|
|
Loading…
Add table
Reference in a new issue