Skip to content

Commit e4bee63

Browse files
scholzptpressure
andcommitted
Fix x86-64 OUT 16-bit opcode prefix
Using 16-bit registers should emit the 16-bit prefix `0x66`. Co-authored-by: Thomas Prescher <thomas.prescher@cyberus-technology.de>
1 parent fa89ac4 commit e4bee63

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugin/src/arch/x64/gen_opmap.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5547,7 +5547,7 @@ Ops!(
55475547

55485548
"out" = [
55495549
b"ibAb" , [0xE6 ], X;
5550-
b"ibAw" , [0xE7 ], X;
5550+
b"ibAw" , [0xE7 ], X, WORD_SIZE;
55515551
b"ibAd" , [0xE7 ], X;
55525552
b"CwAb" , [0xEE ], X;
55535553
b"CwAw" , [0xEF ], X, WORD_SIZE;

0 commit comments

Comments
 (0)