diff options
| author | Camille Mougey <commial@gmail.com> | 2015-02-13 14:16:52 +0100 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2015-02-13 14:16:52 +0100 |
| commit | 13a3fcbb168589703d56d6c36312d788f68786e3 (patch) | |
| tree | b54647a953afbb30b0939d90e9ac256604093b74 /miasm2/analysis/sandbox.py | |
| parent | 9af3164437657d93916b3658c483d6c3e4949cd5 (diff) | |
| parent | ef6c6b0b855800375758058863861f28657b5ba7 (diff) | |
| download | miasm-13a3fcbb168589703d56d6c36312d788f68786e3.tar.gz miasm-13a3fcbb168589703d56d6c36312d788f68786e3.zip | |
Merge pull request #69 from serpilliere/x86_fix_op_32_in_64
X86 fix op 32 in 64
Diffstat (limited to 'miasm2/analysis/sandbox.py')
| -rw-r--r-- | miasm2/analysis/sandbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/analysis/sandbox.py b/miasm2/analysis/sandbox.py index 9fdae8cf..3b710719 100644 --- a/miasm2/analysis/sandbox.py +++ b/miasm2/analysis/sandbox.py @@ -289,7 +289,7 @@ class Arch_x86_32(Arch_x86): _ARCH_ = "x86_32" -class Arch_x86_64(Arch): +class Arch_x86_64(Arch_x86): _ARCH_ = "x86_64" |