Author: aandrejevic Date: Sat Oct 19 18:00:19 2013 New Revision: 60708
URL: http://svn.reactos.org/svn/reactos?rev=60708&view=rev Log: [FAST486] And add those newly implemented opcodes into the table...
Modified: branches/ntvdm/lib/fast486/extraops.c branches/ntvdm/lib/fast486/extraops.h
Modified: branches/ntvdm/lib/fast486/extraops.c URL: http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/fast486/extraops.c?rev... ============================================================================== --- branches/ntvdm/lib/fast486/extraops.c [iso-8859-1] (original) +++ branches/ntvdm/lib/fast486/extraops.c [iso-8859-1] Sat Oct 19 18:00:19 2013 @@ -182,22 +182,22 @@ Fast486ExtOpcodeConditionalJmp, Fast486ExtOpcodeConditionalJmp, Fast486ExtOpcodeConditionalJmp, - NULL, // TODO: OPCODE 0x90 NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x91 NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x92 NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x93 NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x94 NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x95 NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x96 NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x97 NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x98 NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x99 NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x9A NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x9B NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x9C NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x9D NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x9E NOT IMPLEMENTED - NULL, // TODO: OPCODE 0x9F NOT IMPLEMENTED + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, + Fast486ExtOpcodeConditionalSet, NULL, // TODO: OPCODE 0xA0 NOT IMPLEMENTED NULL, // TODO: OPCODE 0xA1 NOT IMPLEMENTED NULL, // Invalid
Modified: branches/ntvdm/lib/fast486/extraops.h URL: http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/fast486/extraops.h?rev... ============================================================================== --- branches/ntvdm/lib/fast486/extraops.h [iso-8859-1] (original) +++ branches/ntvdm/lib/fast486/extraops.h [iso-8859-1] Sat Oct 19 18:00:19 2013 @@ -24,6 +24,7 @@
/* DEFINES ********************************************************************/ FAST486_OPCODE_HANDLER(Fast486ExtOpcodeConditionalJmp); +FAST486_OPCODE_HANDLER(Fast486ExtOpcodeConditionalSet); FAST486_OPCODE_HANDLER(Fast486OpcodeExtended);
#endif // _EXTRAOPS_H_