mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 20:03:12 +00:00
[FAST486]
- Call Fast486GetCurrentPrivLevel only when needed. - Fix a type. svn path=/branches/ntvdm/; revision=61211
This commit is contained in:
parent
aad49cc77c
commit
a2bd742ecd
4 changed files with 20 additions and 23 deletions
|
@ -1434,7 +1434,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeGroupFF)
|
|||
else if (ModRegRm.Register == 3)
|
||||
{
|
||||
USHORT Selector;
|
||||
INT Segment = FAST486_REG_DS;
|
||||
FAST486_SEG_REGS Segment = FAST486_REG_DS;
|
||||
|
||||
/* Check for the segment override */
|
||||
if (State->PrefixFlags & FAST486_PREFIX_SEG)
|
||||
|
@ -1487,7 +1487,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeGroupFF)
|
|||
else if (ModRegRm.Register == 5)
|
||||
{
|
||||
USHORT Selector;
|
||||
INT Segment = FAST486_REG_DS;
|
||||
FAST486_SEG_REGS Segment = FAST486_REG_DS;
|
||||
|
||||
/* Check for the segment override */
|
||||
if (State->PrefixFlags & FAST486_PREFIX_SEG)
|
||||
|
@ -1580,7 +1580,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeGroupFF)
|
|||
else if (ModRegRm.Register == 3)
|
||||
{
|
||||
USHORT Selector;
|
||||
INT Segment = FAST486_REG_DS;
|
||||
FAST486_SEG_REGS Segment = FAST486_REG_DS;
|
||||
|
||||
/* Check for the segment override */
|
||||
if (State->PrefixFlags & FAST486_PREFIX_SEG)
|
||||
|
@ -1636,7 +1636,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeGroupFF)
|
|||
else if (ModRegRm.Register == 5)
|
||||
{
|
||||
USHORT Selector;
|
||||
INT Segment = FAST486_REG_DS;
|
||||
FAST486_SEG_REGS Segment = FAST486_REG_DS;
|
||||
|
||||
/* Check for the segment override */
|
||||
if (State->PrefixFlags & FAST486_PREFIX_SEG)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue