diff options
author | iximeow <me@iximeow.net> | 2023-03-05 08:36:41 -0800 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2023-03-05 08:36:41 -0800 |
commit | b52dd7a453e041ca79f0c440dcd657e0b9225828 (patch) | |
tree | 785631b2c58e2dad4bf3f6a11ab55ee28e109bd4 /test/protected_mode/mod.rs | |
parent | 72f8f6677719a8ad7c8e61e4d629f47deef746cc (diff) |
add `Opcode::is_jcc`, `Opcode::is_setcc`, and `Opcode::is_cmovcc` helpers
this request/suggestion comes from
[github](https://github.com/iximeow/yaxpeax-x86/issues/29)! thank you!
Diffstat (limited to 'test/protected_mode/mod.rs')
-rw-r--r-- | test/protected_mode/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/protected_mode/mod.rs b/test/protected_mode/mod.rs index 93f4b8f..0270dcc 100644 --- a/test/protected_mode/mod.rs +++ b/test/protected_mode/mod.rs @@ -1,5 +1,6 @@ mod regspec; mod operand; +mod opcode; #[cfg(feature="fmt")] mod display; mod evex_generated; |