diff options
Diffstat (limited to 'arch/x86/il.h')
| -rw-r--r-- | arch/x86/il.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86/il.h b/arch/x86/il.h index 41f41dee..1bef0606 100644 --- a/arch/x86/il.h +++ b/arch/x86/il.h @@ -24,9 +24,10 @@ struct DISASSEMBLY_OPTIONS bool lowerCase; std::string separator; + bool mpx; - DISASSEMBLY_OPTIONS(DISASSEMBLY_FLAVOR_ENUM df = DF_BN_INTEL, bool lowerCase = true, std::string separator = ", ") - : df(df), lowerCase(lowerCase), separator(separator) { }; + DISASSEMBLY_OPTIONS(DISASSEMBLY_FLAVOR_ENUM df = DF_BN_INTEL, bool lowerCase = true, std::string separator = ", ", bool mpx = false) + : df(df), lowerCase(lowerCase), separator(separator), mpx(mpx) { }; }; #define IL_FLAG_C 0 |
