diff options
| author | Florent <florent.monjalet@gmail.com> | 2015-10-29 12:29:42 +0100 |
|---|---|---|
| committer | Florent <florent.monjalet@gmail.com> | 2015-10-29 12:29:42 +0100 |
| commit | 996b4ae4464c0b0aabadaacdea775b217ed5ed32 (patch) | |
| tree | 9259c2a57779580a9b7d37c1014d78645b83dbcd | |
| parent | 0853d0bca7c8032ec59c23b61b2d4c464265ffc6 (diff) | |
| parent | 1a2e1504a0d8148574ed7e99a162473228c2f3c8 (diff) | |
| download | miasm-996b4ae4464c0b0aabadaacdea775b217ed5ed32.tar.gz miasm-996b4ae4464c0b0aabadaacdea775b217ed5ed32.zip | |
Merge pull request #251 from serpilliere/fix_ida_ir
Example/ida/utils: fix mips arch
| -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') |