about summary refs log tree commit diff stats
path: root/miasm2/jitter/csts.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2015-12-02 10:03:02 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2015-12-04 16:01:23 +0100
commitfd4130d5ed14885557381cdb5fc7342abf29eb48 (patch)
tree88f1f176faaf161977fb087f827807e19a7332d2 /miasm2/jitter/csts.py
parent5ccd41c9a57dabf65bf193f69b53b36bfa553e69 (diff)
downloadmiasm-fd4130d5ed14885557381cdb5fc7342abf29eb48.tar.gz
miasm-fd4130d5ed14885557381cdb5fc7342abf29eb48.zip
Jitter/csts: add priv instr cst
Diffstat (limited to '')
-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 7afd1d36..b71e9463 100644
--- a/miasm2/jitter/csts.py
+++ b/miasm2/jitter/csts.py
@@ -12,6 +12,7 @@ EXCEPT_BREAKPOINT_INTERN = (1 << 10)
 
 EXCEPT_ACCESS_VIOL = ((1 << 14) | EXCEPT_DO_NOT_UPDATE_PC)
 EXCEPT_DIV_BY_ZERO = ((1 << 16) | EXCEPT_DO_NOT_UPDATE_PC)
+EXCEPT_PRIV_INSN = ((1 << 17) | EXCEPT_DO_NOT_UPDATE_PC)
 # VM Mngr constants
 
 PAGE_READ = 1