From 3925c4a3d806e83dc41185e4a48e4100897bf596 Mon Sep 17 00:00:00 2001 From: Aleksandar Andrejevic Date: Thu, 29 Aug 2013 22:11:33 +0000 Subject: [PATCH] [SOFT386] Add Soft386OpcodeHalt to the opcode table. svn path=/branches/ntvdm/; revision=59891 --- lib/soft386/opcodes.c | 2 +- lib/soft386/opcodes.h | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/soft386/opcodes.c b/lib/soft386/opcodes.c index 9635d003edc..d104ce78125 100644 --- a/lib/soft386/opcodes.c +++ b/lib/soft386/opcodes.c @@ -268,7 +268,7 @@ Soft386OpcodeHandlers[SOFT386_NUM_OPCODE_HANDLERS] = NULL, // Invalid Soft386OpcodePrefix, Soft386OpcodePrefix, - NULL, // TODO: OPCODE 0xF4 NOT SUPPORTED + Soft386OpcodeHalt, NULL, // TODO: OPCODE 0xF5 NOT SUPPORTED NULL, // TODO: OPCODE 0xF6 NOT SUPPORTED NULL, // TODO: OPCODE 0xF7 NOT SUPPORTED diff --git a/lib/soft386/opcodes.h b/lib/soft386/opcodes.h index d4ede999d72..a767bcd17f0 100644 --- a/lib/soft386/opcodes.h +++ b/lib/soft386/opcodes.h @@ -135,4 +135,12 @@ Soft386OpcodeSetDir UCHAR Opcode ); +BOOLEAN +FASTCALL +Soft386OpcodeHalt +( + PSOFT386_STATE State, + UCHAR Opcode +); + #endif // _OPCODES_H_