diff options
| author | Camille Mougey <commial@gmail.com> | 2018-01-04 17:07:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-04 17:07:20 +0100 |
| commit | f637fb6685996c0e12217dabc97052080b83efcb (patch) | |
| tree | 0529b844818fbdf7c2a9cab7373f9a9a829f3e7b /test/arch/x86/arch.py | |
| parent | 1ef1c5024ab361d2a38237b9d3752ea7d66a1165 (diff) | |
| parent | f6483d9dabc4ea85a9f8e293128cb84d5b9cfe8b (diff) | |
| download | miasm-f637fb6685996c0e12217dabc97052080b83efcb.tar.gz miasm-f637fb6685996c0e12217dabc97052080b83efcb.zip | |
Merge pull request #649 from serpilliere/x86_add_op
X86 add op
Diffstat (limited to 'test/arch/x86/arch.py')
| -rw-r--r-- | test/arch/x86/arch.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index 694e18c0..972a2e12 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -2147,6 +2147,10 @@ reg_tests = [ (m64, "00000000 LFENCE", "0faee8"), + (m64, "00000000 MFENCE", + "0FAEF0"), + (m64, "00000000 SFENCE", + "0FAEF8"), (m32, "00000000 SUB AL, 0x11", |