From 1a2e1504a0d8148574ed7e99a162473228c2f3c8 Mon Sep 17 00:00:00 2001 From: Fabrice Desclaux Date: Thu, 29 Oct 2015 10:45:03 +0100 Subject: Example/ida/utils: fix mips arch --- example/ida/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'example') 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') -- cgit 1.4.1