about summary refs log tree commit diff stats
path: root/miasm2/jitter/csts.py
diff options
context:
space:
mode:
authorAymeric Vincent <aymeric.vincent@cea.fr>2018-02-22 16:02:57 +0100
committerAymeric Vincent <aymeric.vincent@cea.fr>2018-02-26 11:34:41 +0100
commitcc2ee2c61dd4719bd7f9a85193590dffcda46991 (patch)
tree8d6b3e6077c97f368dab884b8a889bba75e74f5a /miasm2/jitter/csts.py
parent0606dd974a5ff0c3d6fb58e002b9319235a2dfbd (diff)
downloadmiasm-cc2ee2c61dd4719bd7f9a85193590dffcda46991.tar.gz
miasm-cc2ee2c61dd4719bd7f9a85193590dffcda46991.zip
Add support for PowerPC 32bit big-endian processors: "ppc32b"
Diffstat (limited to 'miasm2/jitter/csts.py')
-rw-r--r--miasm2/jitter/csts.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm2/jitter/csts.py b/miasm2/jitter/csts.py
index 8efd5626..56179c92 100644
--- a/miasm2/jitter/csts.py
+++ b/miasm2/jitter/csts.py
@@ -8,6 +8,7 @@ EXCEPT_NUM_UPDT_EIP = (1<<11)
 EXCEPT_CODE_AUTOMOD = (1 << 0)
 EXCEPT_SOFT_BP = (1 << 1)
 EXCEPT_INT_XX = (1 << 2)
+EXCEPT_SPR_ACCESS = (1 << 3)
 EXCEPT_BREAKPOINT_INTERN = (1 << 10)
 
 EXCEPT_ACCESS_VIOL = ((1 << 14) | EXCEPT_DO_NOT_UPDATE_PC)