diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2019-02-05 23:37:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-05 23:37:54 +0100 |
| commit | 5cfdeb7ab8d889232044bb93f2505cfb23c4f92f (patch) | |
| tree | 29903f4208266f342c4f0aac55dc4c6788acb9ba /test/arch/x86/arch.py | |
| parent | ca6cdc24302fd065b0bdde41573ffe077c5ddcaf (diff) | |
| parent | 4b9858ef4fef46f730a55ec2fdca1211078153c8 (diff) | |
| download | miasm-5cfdeb7ab8d889232044bb93f2505cfb23c4f92f.tar.gz miasm-5cfdeb7ab8d889232044bb93f2505cfb23c4f92f.zip | |
Merge pull request #960 from WilliamBruneau/add_endbr
Add ENDBR64 and ENDBR32 instructions
Diffstat (limited to 'test/arch/x86/arch.py')
| -rw-r--r-- | test/arch/x86/arch.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index b866a325..36d6c2c8 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -3093,6 +3093,11 @@ reg_tests = [ (m32, "00000000 EMMS", "0f77"), + + (m64, "00000000 ENDBR64", + "f30f1efa"), + (m32, "00000000 ENDBR32", + "f30f1efb"), ] |