about summary refs log tree commit diff stats
path: root/miasm2/jitter/csts.py
diff options
context:
space:
mode:
Diffstat (limited to 'miasm2/jitter/csts.py')
-rw-r--r--miasm2/jitter/csts.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/miasm2/jitter/csts.py b/miasm2/jitter/csts.py
index b71e9463..7af2435f 100644
--- a/miasm2/jitter/csts.py
+++ b/miasm2/jitter/csts.py
@@ -13,6 +13,9 @@ 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)
+EXCEPT_ILLEGAL_INSN = ((1 << 18) | EXCEPT_DO_NOT_UPDATE_PC)
+EXCEPT_UNK_MNEMO = ((1 << 19) | EXCEPT_DO_NOT_UPDATE_PC)
+
 # VM Mngr constants
 
 PAGE_READ = 1