1
0
Fork 0

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:
Sjoerd van der Berg 2003-11-26 17:24:36 +00:00
parent 6d1d97b139
commit 2ef1879ac5
2 changed files with 1 additions and 3 deletions

View file

@ -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 {

View file

@ -120,7 +120,7 @@
} else {
GetEAa;CPU_LSL(LoadMw(eaa),limit);
}
*rmrd=(Bit16u)limit;
*rmrd=(Bit32u)limit;
}
break;
CASE_0F_D(0x80) /* JO */