diff options
author | iximeow <me@iximeow.net> | 2021-07-04 15:26:47 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-07-04 15:26:47 -0700 |
commit | 0a746eb214f219989e6a0f189a35e7bec1242fbe (patch) | |
tree | 6b3acdc4c36004404c7da03e2fa0c8bf7d6e70bb /src/protected_mode/uarch.rs | |
parent | bb2870e56d6c9a0a7b96be8287193a753e3a4391 (diff) |
update crate to rust 2018
Diffstat (limited to 'src/protected_mode/uarch.rs')
-rw-r--r-- | src/protected_mode/uarch.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protected_mode/uarch.rs b/src/protected_mode/uarch.rs index 0d2279e..cbe3e89 100644 --- a/src/protected_mode/uarch.rs +++ b/src/protected_mode/uarch.rs @@ -16,7 +16,7 @@ pub mod amd { //! as retrieved 2020 may 19, //! `sha256: 87ff152ae18c017dcbfb9f7ee6e88a9f971f6250fd15a70a3dd87c3546323bd5` - use long_mode::InstDecoder; + use crate::protected_mode::InstDecoder; /// `k8` was the first AMD microarchitecture to implement x86_64, launched in 2003. while later /// `k8`-based processors supported SSE3, these predefined decoders pick the lower end of @@ -107,7 +107,7 @@ pub mod amd { pub mod intel { //! sourced by walking wikipedia pages. seriously! this stuff is kinda hard to figure out! - use long_mode::InstDecoder; + use crate::protected_mode::InstDecoder; /// `Netburst` was the first Intel microarchitecture to implement x86_64, beginning with the /// `Prescott` family launched in 2004. while the wider `Netburst` family launched in 2000 |