We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91c468e commit 979f7ecCopy full SHA for 979f7ec
1 file changed
windows/native_exec/simple_x86.py
@@ -892,16 +892,19 @@ class CmpsB(Instruction):
892
default_32_bits = True
893
encoding = [(RawBits.from_int(8, 0xa6),)]
894
895
+cmpsw = CmpsB # Allow use in assemble (use Capitalize) : todo cleaner
896
897
class CmpsW(Instruction):
898
899
encoding = [(RawBits.from_int(16, 0x66A7),)]
900
901
+Cmpsw = CmpsW # Allow use in assemble (use Capitalize) : todo cleaner
902
903
class CmpsD(Instruction):
904
905
encoding = [(RawBits.from_int(8, 0xa7),)]
906
907
+Cmpsd = CmpsD # Allow use in assemble (use Capitalize) : todo cleaner
908
909
class Nop(Instruction):
910
encoding = [(RawBits.from_int(8, 0x90),)]
0 commit comments