diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-03-02 10:31:20 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-03-04 02:44:17 +0100 |
| commit | 21604c8e0541ea03a38f15831eafaf5793396887 (patch) | |
| tree | 6dbc82cae269b2fe33742f809b12b73fa18df8d9 /example/ida/utils.py | |
| parent | a3013003b9f77b017036bd1d46797052d875efbe (diff) | |
| download | miasm-21604c8e0541ea03a38f15831eafaf5793396887.tar.gz miasm-21604c8e0541ea03a38f15831eafaf5793396887.zip | |
PPC32: integration
Diffstat (limited to 'example/ida/utils.py')
| -rw-r--r-- | example/ida/utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/example/ida/utils.py b/example/ida/utils.py index b147cde2..585d86a9 100644 --- a/example/ida/utils.py +++ b/example/ida/utils.py @@ -57,6 +57,8 @@ def guess_machine(): machine = Machine("mips32l") elif processor_name == "mipsb": machine = Machine("mips32b") + elif processor_name == "PPC": + machine = Machine("ppc32b") else: print repr(processor_name) raise NotImplementedError('not fully functional') |