Still let "int $3" be output as two bytes and added the "int3" instruction

This commit is contained in:
Pierre Pronchery 2011-04-20 00:25:12 +00:00
parent 1490b7a0f8
commit c1ea0b8cd9
2 changed files with 5 additions and 2 deletions

View File

@ -598,10 +598,12 @@
/* INSD 0x6d 1 */ /* INSD 0x6d 1 */
{ "insd", 0x6d, OP1F, AOT_NONE, AOT_NONE, AOT_NONE }, { "insd", 0x6d, OP1F, AOT_NONE, AOT_NONE, AOT_NONE },
#endif #endif
/* INT 0xcc 1 3 */
{ "int", 0xcc, OP1F, OP_C3, AOT_NONE, AOT_NONE },
/* INT 0xcd 1 imm8 */ /* INT 0xcd 1 imm8 */
{ "int", 0xcd, OP1F, OP_U8, AOT_NONE, AOT_NONE }, { "int", 0xcd, OP1F, OP_U8, AOT_NONE, AOT_NONE },
/* INT 0xcc 1 3 */
{ "int", 0xcc, OP1F, OP_C3, AOT_NONE, AOT_NONE },
/* INT3 0xcc 1 */
{ "int3", 0xcc, OP1F, AOT_NONE, AOT_NONE, AOT_NONE },
/* INTO 0xce 1 */ /* INTO 0xce 1 */
{ "into", 0xce, OP1F, AOT_NONE, AOT_NONE, AOT_NONE }, { "into", 0xce, OP1F, AOT_NONE, AOT_NONE, AOT_NONE },
/* INVD 0x0f08 2 */ /* INVD 0x0f08 2 */

View File

@ -243,6 +243,7 @@
insb insb
insd insd
int $0x3 int $0x3
int3
int $0x4 int $0x4
int $0x42 int $0x42
into into