diff options
| author | Camille Mougey <commial@gmail.com> | 2018-03-05 13:18:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-05 13:18:22 +0100 |
| commit | 342614c1ec4bedd5bcc089ba01909a66b9a73aba (patch) | |
| tree | 683728881150e2406849bcc1e1c13c62bc0b6d44 /example | |
| parent | a3013003b9f77b017036bd1d46797052d875efbe (diff) | |
| parent | 5d5c768db62da037d156808f528cf9c1e14db8ab (diff) | |
| download | miasm-342614c1ec4bedd5bcc089ba01909a66b9a73aba.tar.gz miasm-342614c1ec4bedd5bcc089ba01909a66b9a73aba.zip | |
Merge pull request #690 from serpilliere/integrate_ppc
Integrate ppc
Diffstat (limited to 'example')
| -rw-r--r-- | example/ida/utils.py | 2 | ||||
| -rwxr-xr-x | example/samples/md5_ppc32b | bin | 0 -> 68500 bytes |
2 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') diff --git a/example/samples/md5_ppc32b b/example/samples/md5_ppc32b new file mode 100755 index 00000000..dd24b964 --- /dev/null +++ b/example/samples/md5_ppc32b Binary files differ |