mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[FAST486]
The default segment is SS when the SIB base is EBP. svn path=/trunk/; revision=67674
This commit is contained in:
parent
c2725fbadb
commit
c0e9ec7940
1 changed files with 2 additions and 1 deletions
|
@ -1074,7 +1074,8 @@ Fast486ParseModRegRm(PFAST486_STATE State,
|
|||
}
|
||||
}
|
||||
|
||||
if ((SibByte & 0x07) == FAST486_REG_ESP)
|
||||
if (((SibByte & 0x07) == FAST486_REG_ESP)
|
||||
|| ((SibByte & 0x07) == FAST486_REG_EBP && Mode != 0))
|
||||
{
|
||||
/* Check if there is no segment override */
|
||||
if (!(State->PrefixFlags & FAST486_PREFIX_SEG))
|
||||
|
|
Loading…
Reference in a new issue