diff options
| author | Aymeric Vincent <aymeric.vincent@cea.fr> | 2018-02-22 16:02:57 +0100 |
|---|---|---|
| committer | Aymeric Vincent <aymeric.vincent@cea.fr> | 2018-02-26 11:34:41 +0100 |
| commit | cc2ee2c61dd4719bd7f9a85193590dffcda46991 (patch) | |
| tree | 8d6b3e6077c97f368dab884b8a889bba75e74f5a /miasm2/jitter/jitload.py | |
| parent | 0606dd974a5ff0c3d6fb58e002b9319235a2dfbd (diff) | |
| download | miasm-cc2ee2c61dd4719bd7f9a85193590dffcda46991.tar.gz miasm-cc2ee2c61dd4719bd7f9a85193590dffcda46991.zip | |
Add support for PowerPC 32bit big-endian processors: "ppc32b"
Diffstat (limited to 'miasm2/jitter/jitload.py')
| -rw-r--r-- | miasm2/jitter/jitload.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/miasm2/jitter/jitload.py b/miasm2/jitter/jitload.py index ff7ba215..7a3acb2c 100644 --- a/miasm2/jitter/jitload.py +++ b/miasm2/jitter/jitload.py @@ -157,7 +157,7 @@ class ExceptionHandle(): return (self.except_flag == to_cmp.except_flag) -class jitter: +class jitter(object): "Main class for JIT handling" @@ -188,6 +188,8 @@ class jitter: from miasm2.jitter.arch import JitCore_msp430 as jcore elif arch_name == "mips32": from miasm2.jitter.arch import JitCore_mips32 as jcore + elif arch_name == "ppc32": + from miasm2.jitter.arch import JitCore_ppc32 as jcore else: raise ValueError("unknown jit arch: %s" % arch_name) except ImportError: |