[SOFT386]

Add Soft386OpcodeHalt to the opcode table.


svn path=/branches/ntvdm/; revision=59891
This commit is contained in:
Aleksandar Andrejevic 2013-08-29 22:11:33 +00:00
parent c0a39279ae
commit 3925c4a3d8
2 changed files with 9 additions and 1 deletions

View file

@ -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

View file

@ -135,4 +135,12 @@ Soft386OpcodeSetDir
UCHAR Opcode
);
BOOLEAN
FASTCALL
Soft386OpcodeHalt
(
PSOFT386_STATE State,
UCHAR Opcode
);
#endif // _OPCODES_H_