diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-06-24 15:11:51 +0200 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-10-09 15:26:04 +0000 |
| commit | d249a6bb1b58b6e6049ef2633760749a10b58c74 (patch) | |
| tree | 33b97b80d801c139d2ed525b8d3913718ea7a1f6 /test/arch/x86/arch.py | |
| parent | a01ab03fac0a5019d3298a500347e32398625ee7 (diff) | |
| download | focaccia-miasm-d249a6bb1b58b6e6049ef2633760749a10b58c74.tar.gz focaccia-miasm-d249a6bb1b58b6e6049ef2633760749a10b58c74.zip | |
Add blsi opcode and tests
Diffstat (limited to 'test/arch/x86/arch.py')
| -rw-r--r-- | test/arch/x86/arch.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index 22cfcf39..dfb051fa 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -2583,6 +2583,16 @@ reg_tests = [ (m16, "00000000 LDS SI, WORD PTR [BX + SI]", "C530"), + #### BMI operations + #### + + (m64, "00000000 BLSI RAX, QWORD PTR [EBX]", + "67c4e2f8f31b"), + (m64, "00000000 BLSI EAX, EBX", + "c4e278f3db"), + (m64, "00000000 BLSI EAX, R14D", + "c4c278f3de"), + #### MMX/SSE/AVX operations #### |