diff options
| author | Camille Mougey <commial@gmail.com> | 2016-07-30 11:46:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-30 11:46:09 +0200 |
| commit | e42eb7f3f9cf8d7cbb9562dc8108815095e0cdc5 (patch) | |
| tree | ead4c5daa6846abe972f4cc191c38580445c489e /miasm2/arch | |
| parent | 36149820780dbd2aa596275944cfda644fd979a2 (diff) | |
| parent | cb063bab907831518b815aad547b95b3931291a4 (diff) | |
| download | miasm-e42eb7f3f9cf8d7cbb9562dc8108815095e0cdc5.tar.gz miasm-e42eb7f3f9cf8d7cbb9562dc8108815095e0cdc5.zip | |
Merge pull request #401 from serpilliere/x86_setalc
X86: add setalc
Diffstat (limited to 'miasm2/arch')
| -rw-r--r-- | miasm2/arch/x86/arch.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/arch/x86/arch.py b/miasm2/arch/x86/arch.py index 487b0030..a3b3bb95 100644 --- a/miasm2/arch/x86/arch.py +++ b/miasm2/arch/x86/arch.py @@ -3736,6 +3736,7 @@ addop("outsw", [bs8(0x6f), bs_opmode16]) addop("outsd", [bs8(0x6f), bs_opmode32]) addop("outsd", [bs8(0x6f), bs_opmode64]) +addop("setalc", [bs8(0xD6)]) # addop("pause", [bs8(0xf3), bs8(0x90)]) |