Author: aandrejevic Date: Sat Aug 31 19:26:13 2013 New Revision: 59931
URL: http://svn.reactos.org/svn/reactos?rev=59931&view=rev Log: [SOFT386] Increment the TSC on every instruction cycle.
Modified: branches/ntvdm/lib/soft386/soft386.c
Modified: branches/ntvdm/lib/soft386/soft386.c URL: http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/soft386/soft386.c?rev=... ============================================================================== --- branches/ntvdm/lib/soft386/soft386.c [iso-8859-1] (original) +++ branches/ntvdm/lib/soft386/soft386.c [iso-8859-1] Sat Aug 31 19:26:13 2013 @@ -64,6 +64,9 @@ /* A non-prefix opcode has been executed, reset the prefix flags */ State->PrefixFlags = 0; } + + /* Increment the time stamp counter */ + State->TimeStampCounter++; } while ((Command == SOFT386_CONTINUE) || (Command == SOFT386_STEP_OVER && ProcedureCallCount > 0)