diff options
| -rw-r--r-- | miasm2/arch/x86/arch.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/miasm2/arch/x86/arch.py b/miasm2/arch/x86/arch.py index 5ccc4a9c..b8991887 100644 --- a/miasm2/arch/x86/arch.py +++ b/miasm2/arch/x86/arch.py @@ -476,6 +476,8 @@ class instruction_x86(instruction): return True if self.name.startswith('LOOP'): return True + if self.name.startswith('INT'): + return True if self.name.startswith('SYS'): return True # repxx yyy generate split flow |