From 2ef1879ac5987cb8ee873298398193a4ced8984a Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Wed, 26 Nov 2003 17:24:36 +0000 Subject: [PATCH] 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 --- src/cpu/core_normal/prefix_0f.h | 2 -- src/cpu/core_normal/prefix_66_0f.h | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/cpu/core_normal/prefix_0f.h b/src/cpu/core_normal/prefix_0f.h index 85945dce..150a5c33 100644 --- a/src/cpu/core_normal/prefix_0f.h +++ b/src/cpu/core_normal/prefix_0f.h @@ -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 { diff --git a/src/cpu/core_normal/prefix_66_0f.h b/src/cpu/core_normal/prefix_66_0f.h index 2b578bdc..9aa15dc2 100644 --- a/src/cpu/core_normal/prefix_66_0f.h +++ b/src/cpu/core_normal/prefix_66_0f.h @@ -120,7 +120,7 @@ } else { GetEAa;CPU_LSL(LoadMw(eaa),limit); } - *rmrd=(Bit16u)limit; + *rmrd=(Bit32u)limit; } break; CASE_0F_D(0x80) /* JO */