diff options
| author | iximeow <me@iximeow.net> | 2026-02-19 02:14:57 +0000 |
|---|---|---|
| committer | iximeow <me@iximeow.net> | 2026-02-19 02:14:57 +0000 |
| commit | dc1746e552204a407bdfd217dc2176949d3cdaed (patch) | |
| tree | 2d25a11dc97b130e207d1ced88674f91c826fa53 /src/long_mode/mod.rs | |
| parent | 1dbe370cb0a740c42e5688724684e363ed5bd92e (diff) | |
draft
Diffstat (limited to 'src/long_mode/mod.rs')
| -rw-r--r-- | src/long_mode/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/long_mode/mod.rs b/src/long_mode/mod.rs index 5163ba6..d1d7cd8 100644 --- a/src/long_mode/mod.rs +++ b/src/long_mode/mod.rs @@ -3,6 +3,7 @@ mod evex; #[cfg(feature = "fmt")] mod display; pub mod uarch; +pub mod behavior; pub use crate::MemoryAccessSize; use crate::{Address, Word}; @@ -2957,7 +2958,7 @@ impl Opcode { } /// get the [`ConditionCode`] for this instruction, if it is in fact conditional. x86's - /// conditional instructions are `Jcc`, `CMOVcc`, andd `SETcc`. + /// conditional instructions are `Jcc`, `CMOVcc`, and `SETcc`. pub fn condition(&self) -> Option<ConditionCode> { match self { Opcode::JO | |
