Added the "daa" instruction

This commit is contained in:
Pierre Pronchery 2011-04-17 13:58:39 +00:00
parent 2305fb47fd
commit b6f891d8bf
2 changed files with 5 additions and 2 deletions

View File

@ -318,6 +318,8 @@
/* CDQ 0x99 1 */
{ "cdq", 0x99, OP1F, AOT_NONE, AOT_NONE, AOT_NONE },
#endif
/* DAA 0x27 1 */
{ "daa", 0x27, OP1F, AOT_NONE, AOT_NONE, AOT_NONE },
/* DAS 0x2f 1 */
{ "das", 0x2f, OP1F, AOT_NONE, AOT_NONE, AOT_NONE },
/* DEC 0x48 +rd 1 */

View File

@ -81,8 +81,9 @@
clts /* 0f 06 */
cmc /* f5 */
cpuid /* 0f a2 */
cdq /* 0x99 */
das
cdq /* 99 */
daa /* 27 */
das /* 2f */
/* DEC */
dec %eax /* 48 */
dec %ecx /* 49 */