Added the "das" instruction

This commit is contained in:
Pierre Pronchery 2011-04-17 13:57:10 +00:00
parent 9bb7847caf
commit 2305fb47fd
3 changed files with 4 additions and 0 deletions

View File

@ -15,6 +15,7 @@
#include <System.h>
#include <string.h>
#include <errno.h>

View File

@ -318,6 +318,8 @@
/* CDQ 0x99 1 */
{ "cdq", 0x99, OP1F, AOT_NONE, AOT_NONE, AOT_NONE },
#endif
/* DAS 0x2f 1 */
{ "das", 0x2f, OP1F, AOT_NONE, AOT_NONE, AOT_NONE },
/* DEC 0x48 +rd 1 */
{ "dec", 0x48, OP1F, OP_AX, AOT_NONE, AOT_NONE },
{ "dec", 0x49, OP1F, OP_CX, AOT_NONE, AOT_NONE },

View File

@ -82,6 +82,7 @@
cmc /* f5 */
cpuid /* 0f a2 */
cdq /* 0x99 */
das
/* DEC */
dec %eax /* 48 */
dec %ecx /* 49 */