[SOFT386]
authorAleksandar Andrejevic <aandrejevic@reactos.org>
Mon, 30 Sep 2013 02:28:17 +0000 (02:28 +0000)
committerAleksandar Andrejevic <aandrejevic@reactos.org>
Mon, 30 Sep 2013 02:28:17 +0000 (02:28 +0000)
Fix previous fix.

svn path=/branches/ntvdm/; revision=60466

lib/soft386/common.inl

index 962864d..63f7f86 100644 (file)
@@ -649,7 +649,7 @@ Soft386ParseModRegRm(PSOFT386_STATE State,
         }
 
         /* Clear the top 16 bits */
-        ModRegRm->MemoryAddress &= 0xFFFF0000;
+        ModRegRm->MemoryAddress &= 0x0000FFFF;
     }
 
     return TRUE;