| Crates.io | x86_64 |
| lib.rs | x86_64 |
| version | 0.15.4 |
| created_at | 2016-12-27 23:03:49.10102+00 |
| updated_at | 2025-11-24 19:36:40.233775+00 |
| description | Support for x86_64 specific instructions, registers, and structures. |
| homepage | |
| repository | https://github.com/rust-osdev/x86_64 |
| max_upload_size | |
| id | 7801 |
| size | 464,268 |
Support for x86_64 specific instructions (e.g. TLB flush), registers (e.g. control registers), and structures (e.g. page tables).
nightly: Enables features only available on nightly Rust; enabled by default.instructions: Enabled by default, turns on x86_64 specific instructions, and dependent features. Only available for x86_64 targets.If no nightly features are enabled, Rust 1.59.0 is required. This can be done by either:
--no-default-features --features instructions--no-default-featuresIf the nightly feature or any of its sub-features is enabled (which is the
default), a recent nightly is required.
This crate does not attempt to handle every facet of OS development. Other useful crates in this space include:
raw-cpuid: safe wrappers around the
cpuid instruction
uefi: abstractions for
UEFI
(the successor to BIOS)
volatile: interface to
read_volatile and
write_volatile