about summary refs log tree commit diff stats
path: root/example/ida/utils.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2015-10-29 10:45:03 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2015-10-29 10:45:03 +0100
commit1a2e1504a0d8148574ed7e99a162473228c2f3c8 (patch)
tree74dd06949860af1721d35ea50b0b5532326a625a /example/ida/utils.py
parent89b7cc0b3bdcff8ef57dba232c9aae544c3ded35 (diff)
downloadmiasm-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.py4
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')