Author: aandrejevic Date: Tue Nov 12 18:40:13 2013 New Revision: 60964
URL: http://svn.reactos.org/svn/reactos?rev=60964&view=rev Log: [FAST486] Don't forget to check for the operand/address size prefix.
Modified: branches/ntvdm/lib/fast486/extraops.c
Modified: branches/ntvdm/lib/fast486/extraops.c URL: http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/fast486/extraops.c?rev... ============================================================================== --- branches/ntvdm/lib/fast486/extraops.c [iso-8859-1] (original) +++ branches/ntvdm/lib/fast486/extraops.c [iso-8859-1] Tue Nov 12 18:40:13 2013 @@ -903,6 +903,9 @@
OperandSize = AddressSize = State->SegmentRegs[FAST486_REG_CS].Size;
+ TOGGLE_OPSIZE(OperandSize); + TOGGLE_ADSIZE(AddressSize); + /* Get the operands */ if (!Fast486ParseModRegRm(State, AddressSize, &ModRegRm)) {