[SOFT386]

Set the opcode handler for the INS and OUTS instructions to be
Soft386OpcodeIns and Soft386OpcodeOuts, respectively.


svn path=/branches/ntvdm/; revision=60543
This commit is contained in:
Aleksandar Andrejevic
2013-10-05 20:12:08 +00:00
parent fbcc4ad158
commit 15a8cc4515
2 changed files with 6 additions and 4 deletions
+4 -4
View File
@@ -147,10 +147,10 @@ Soft386OpcodeHandlers[SOFT386_NUM_OPCODE_HANDLERS] =
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,
+2
View File
@@ -153,5 +153,7 @@ SOFT386_OPCODE_HANDLER(Soft386OpcodeCmps);
SOFT386_OPCODE_HANDLER(Soft386OpcodeStos);
SOFT386_OPCODE_HANDLER(Soft386OpcodeLods);
SOFT386_OPCODE_HANDLER(Soft386OpcodeScas);
SOFT386_OPCODE_HANDLER(Soft386OpcodeIns);
SOFT386_OPCODE_HANDLER(Soft386OpcodeOuts);
#endif // _OPCODES_H_