mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 20:36:35 +00:00
[FAST486]
Use the size of CS, and not SS, in Fast486OpcodePopReg. svn path=/branches/ntvdm/; revision=61159
This commit is contained in:
parent
2cbcfd75c5
commit
7393337fcf
1 changed files with 1 additions and 1 deletions
|
@ -541,7 +541,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodePushReg)
|
|||
FAST486_OPCODE_HANDLER(Fast486OpcodePopReg)
|
||||
{
|
||||
ULONG Value;
|
||||
BOOLEAN Size = State->SegmentRegs[FAST486_REG_SS].Size;
|
||||
BOOLEAN Size = State->SegmentRegs[FAST486_REG_CS].Size;
|
||||
|
||||
TOGGLE_OPSIZE(Size);
|
||||
NO_LOCK_PREFIX();
|
||||
|
|
Loading…
Reference in a new issue