From f8861a562aa791cccf2c5c22fd124715810f7efb Mon Sep 17 00:00:00 2001 From: Aleksandar Andrejevic Date: Sun, 15 Dec 2013 05:08:57 +0000 Subject: [PATCH] [FAST486] Remove the waiting code for the HLT instruction until I figure out how to do it properly. svn path=/branches/ntvdm/; revision=61276 --- lib/fast486/opcodes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fast486/opcodes.c b/lib/fast486/opcodes.c index 8ea6eda6b5e..b191e6e9c02 100644 --- a/lib/fast486/opcodes.c +++ b/lib/fast486/opcodes.c @@ -883,7 +883,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeHalt) } /* 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;