diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-10-29 10:45:03 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2015-10-29 10:45:03 +0100 |
| commit | 1a2e1504a0d8148574ed7e99a162473228c2f3c8 (patch) | |
| tree | 74dd06949860af1721d35ea50b0b5532326a625a /example/ida/utils.py | |
| parent | 89b7cc0b3bdcff8ef57dba232c9aae544c3ded35 (diff) | |
| download | miasm-1a2e1504a0d8148574ed7e99a162473228c2f3c8.tar.gz miasm-1a2e1504a0d8148574ed7e99a162473228c2f3c8.zip | |
Example/ida/utils: fix mips arch
Diffstat (limited to 'example/ida/utils.py')
| -rw-r--r-- | example/ida/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/ida/utils.py b/example/ida/utils.py index 8a7ecccb..fa1638ab 100644 --- a/example/ida/utils.py +++ b/example/ida/utils.py @@ -56,9 +56,9 @@ def guess_machine(): elif processor_name == "msp430": machine = Machine("msp430") elif processor_name == "mipsl": - machine = Machine("mipsl") + machine = Machine("mips32l") elif processor_name == "mipsb": - machine = Machine("mipsb") + machine = Machine("mips32b") else: print repr(processor_name) raise NotImplementedError('not fully functional') |