You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I expect the result to be infos.Operand1.AccessMode = 3 (3 = READ | WRITE)
But it print 2 (2 = WRITE)
I check xor rcx, Imm, the result is 3, which means rcx will be read and than write.
But when it disasm xor r11b, Imm, the result is 2, means r11 only be write.
I think the result should be the same as the former as 3.
The text was updated successfully, but these errors were encountered:
Incorrect operand parsing:
Here is a part of test code:
I expect the result to be
infos.Operand1.AccessMode = 3
(3 = READ | WRITE
)But it print 2 (
2 = WRITE
)I check
xor rcx, Imm
, the result is 3, which means rcx will be read and than write.But when it disasm
xor r11b, Imm
, the result is 2, means r11 only be write.I think the result should be the same as the former as 3.
The text was updated successfully, but these errors were encountered: