[FAST486]

Use the size of CS, and not SS, in Fast486OpcodePopReg.


svn path=/branches/ntvdm/; revision=61159
This commit is contained in:
Aleksandar Andrejevic 2013-11-30 23:14:54 +00:00
parent 2cbcfd75c5
commit 7393337fcf

View file

@ -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();