aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2025-05-31 20:39:26 +0000
committeriximeow <me@iximeow.net>2025-06-01 09:21:57 +0000
commita4204b5a3807bf41a2bb5801f874e7f263f8db1f (patch)
treed17a9725f6b5b94a4b64b0da150dd1d60a53a7e8 /src/lib.rs
parent08eed360fea81ab9328fd0859b813ee01937b5b1 (diff)
cpu feature bits are the same across 64/32/16-bit
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 93274f9..43ff634 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -128,6 +128,9 @@ extern crate serde;
#[cfg(feature="std")]
extern crate alloc;
+#[macro_use]
+mod isa_settings;
+
pub mod long_mode;
pub use long_mode as amd64;
pub use long_mode::Arch as x86_64;