diff options
| author | serpilliere <devnull@localhost> | 2014-06-12 13:11:33 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2014-06-12 13:11:33 +0200 |
| commit | 1b69d0f86c340febf781d9284a87e447b40ee3ba (patch) | |
| tree | 1d0301c5447d23e60208a3e2c88d1661e9f1db00 | |
| parent | 56774f174d5d8c55f2961fb22bb2b2ceee46e3fd (diff) | |
| download | miasm-1b69d0f86c340febf781d9284a87e447b40ee3ba.tar.gz miasm-1b69d0f86c340febf781d9284a87e447b40ee3ba.zip | |
x86: int is set to splitflow (fix by Florent Monjalet)
| -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 |