* Added (xorl imm8 mem) instruction to the assembler.

This commit is contained in:
Abdulaziz Ghuloum 2007-11-13 23:10:49 -05:00
parent de635ef3bd
commit e06b84e75d
1 changed files with 2 additions and 0 deletions

View File

@ -669,6 +669,8 @@
(cond
[(and (imm8? src) (reg? dst))
(CODE #x83 (ModRM 3 '/6 dst (IMM8 src ac)))]
[(and (imm8? src) (mem? dst))
((CODE/digit #x83 '/6) dst (IMM8 src ac))]
[(and (imm? src) (eq? dst '%eax))
(CODE #x35 (IMM32 src ac))]
[(and (reg? src) (reg? dst))