* Added (xorl imm8 mem) instruction to the assembler.
This commit is contained in:
parent
de635ef3bd
commit
e06b84e75d
|
@ -669,6 +669,8 @@
|
||||||
(cond
|
(cond
|
||||||
[(and (imm8? src) (reg? dst))
|
[(and (imm8? src) (reg? dst))
|
||||||
(CODE #x83 (ModRM 3 '/6 dst (IMM8 src ac)))]
|
(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))
|
[(and (imm? src) (eq? dst '%eax))
|
||||||
(CODE #x35 (IMM32 src ac))]
|
(CODE #x35 (IMM32 src ac))]
|
||||||
[(and (reg? src) (reg? dst))
|
[(and (reg? src) (reg? dst))
|
||||||
|
|
Loading…
Reference in New Issue