Author: aandrejevic
Date: Thu Aug 29 22:11:33 2013
New Revision: 59891
URL:
http://svn.reactos.org/svn/reactos?rev=59891&view=rev
Log:
[SOFT386]
Add Soft386OpcodeHalt to the opcode table.
Modified:
branches/ntvdm/lib/soft386/opcodes.c
branches/ntvdm/lib/soft386/opcodes.h
Modified: branches/ntvdm/lib/soft386/opcodes.c
URL:
http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/soft386/opcodes.c?rev…
==============================================================================
--- branches/ntvdm/lib/soft386/opcodes.c [iso-8859-1] (original)
+++ branches/ntvdm/lib/soft386/opcodes.c [iso-8859-1] Thu Aug 29 22:11:33 2013
@@ -268,7 +268,7 @@
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
Modified: branches/ntvdm/lib/soft386/opcodes.h
URL:
http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/soft386/opcodes.h?rev…
==============================================================================
--- branches/ntvdm/lib/soft386/opcodes.h [iso-8859-1] (original)
+++ branches/ntvdm/lib/soft386/opcodes.h [iso-8859-1] Thu Aug 29 22:11:33 2013
@@ -135,4 +135,12 @@
UCHAR Opcode
);
+BOOLEAN
+FASTCALL
+Soft386OpcodeHalt
+(
+ PSOFT386_STATE State,
+ UCHAR Opcode
+);
+
#endif // _OPCODES_H_