[SOFT386]

Remove whitespace from empty line.
Fix addressing bug.


svn path=/branches/ntvdm/; revision=60465
This commit is contained in:
Aleksandar Andrejevic 2013-09-30 02:06:55 +00:00
parent 79355ae971
commit 462be21fd0
2 changed files with 4 additions and 1 deletions

View file

@ -647,6 +647,9 @@ Soft386ParseModRegRm(PSOFT386_STATE State,
/* Add the signed offset to the address */
ModRegRm->MemoryAddress += (LONG)Offset;
}
/* Clear the top 16 bits */
ModRegRm->MemoryAddress &= 0xFFFF0000;
}
return TRUE;