diff options
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') |