Author: aandrejevic Date: Sun Dec 15 05:08:57 2013 New Revision: 61276
URL: http://svn.reactos.org/svn/reactos?rev=61276&view=rev Log: [FAST486] Remove the waiting code for the HLT instruction until I figure out how to do it properly.
Modified: branches/ntvdm/lib/fast486/opcodes.c
Modified: branches/ntvdm/lib/fast486/opcodes.c URL: http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/fast486/opcodes.c?rev=... ============================================================================== --- branches/ntvdm/lib/fast486/opcodes.c [iso-8859-1] (original) +++ branches/ntvdm/lib/fast486/opcodes.c [iso-8859-1] Sun Dec 15 05:08:57 2013 @@ -883,7 +883,7 @@ }
/* Halt */ - while (State->IntStatus != FAST486_INT_SIGNAL) State->IdleCallback(State); + // TODO: Halt the CPU until an interrupt occurs, using IdleCallback if needed.
/* Return success */ return TRUE;