Author: aandrejevic
Date: Sat Oct 5 20:12:08 2013
New Revision: 60543
URL:
http://svn.reactos.org/svn/reactos?rev=60543&view=rev
Log:
[SOFT386]
Set the opcode handler for the INS and OUTS instructions to be
Soft386OpcodeIns and Soft386OpcodeOuts, respectively.
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] Sat Oct 5 20:12:08 2013
@@ -147,10 +147,10 @@
Soft386OpcodeImulModrmImm,
Soft386OpcodePushByteImm,
Soft386OpcodeImulModrmImm,
- NULL, // TODO: OPCODE 0x6C NOT SUPPORTED
- NULL, // TODO: OPCODE 0x6D NOT SUPPORTED
- NULL, // TODO: OPCODE 0x6E NOT SUPPORTED
- NULL, // TODO: OPCODE 0x6F NOT SUPPORTED
+ Soft386OpcodeIns,
+ Soft386OpcodeIns,
+ Soft386OpcodeOuts,
+ Soft386OpcodeOuts,
Soft386OpcodeShortConditionalJmp,
Soft386OpcodeShortConditionalJmp,
Soft386OpcodeShortConditionalJmp,
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] Sat Oct 5 20:12:08 2013
@@ -153,5 +153,7 @@
SOFT386_OPCODE_HANDLER(Soft386OpcodeStos);
SOFT386_OPCODE_HANDLER(Soft386OpcodeLods);
SOFT386_OPCODE_HANDLER(Soft386OpcodeScas);
+SOFT386_OPCODE_HANDLER(Soft386OpcodeIns);
+SOFT386_OPCODE_HANDLER(Soft386OpcodeOuts);
#endif // _OPCODES_H_