aboutsummaryrefslogtreecommitdiff
path: root/src/bits64/rflags.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bits64/rflags.rs')
-rw-r--r--src/bits64/rflags.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bits64/rflags.rs b/src/bits64/rflags.rs
index 0fac008..fe1d633 100644
--- a/src/bits64/rflags.rs
+++ b/src/bits64/rflags.rs
@@ -4,7 +4,9 @@
//! The upper 32 bits of RFLAGS register is reserved.
//! The lower 32 bits of RFLAGS is the same as EFLAGS.
-use Ring;
+use bitflags::*;
+
+use crate::Ring;
/// The RFLAGS register.
/// This is duplicated code from bits32 eflags.rs.