From 6bde6a89b785dc8075142c5d2b013ba15535b4bc Mon Sep 17 00:00:00 2001 From: Aleksandar Andrejevic Date: Mon, 30 Sep 2013 02:28:17 +0000 Subject: [PATCH] [SOFT386] Fix previous fix. svn path=/branches/ntvdm/; revision=60466 --- lib/soft386/common.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/soft386/common.inl b/lib/soft386/common.inl index 962864df259..63f7f86063c 100644 --- a/lib/soft386/common.inl +++ b/lib/soft386/common.inl @@ -649,7 +649,7 @@ Soft386ParseModRegRm(PSOFT386_STATE State, } /* Clear the top 16 bits */ - ModRegRm->MemoryAddress &= 0xFFFF0000; + ModRegRm->MemoryAddress &= 0x0000FFFF; } return TRUE;