#x86

no-std x86_64

Support for x86_64 specific instructions, registers, and structures

122 releases

0.15.1 Mar 19, 2024
0.15.0-beta Feb 11, 2024
0.14.11 Sep 18, 2023
0.14.10 Jul 10, 2022
0.0.3 Dec 28, 2016

#3 in #x86

Download history 12024/week @ 2024-01-22 8643/week @ 2024-01-29 11500/week @ 2024-02-05 11506/week @ 2024-02-12 12592/week @ 2024-02-19 13802/week @ 2024-02-26 13763/week @ 2024-03-04 15227/week @ 2024-03-11 15656/week @ 2024-03-18 13436/week @ 2024-03-25 16743/week @ 2024-04-01 13972/week @ 2024-04-08 13773/week @ 2024-04-15 15590/week @ 2024-04-22 12612/week @ 2024-04-29 14076/week @ 2024-05-06

56,778 downloads per month
Used in 70 crates (49 directly)

MIT/Apache

370KB
6.5K SLoC

x86_64 library

Crates.io Build Status docs.rs

Support for x86_64 specific instructions (e.g. TLB flush), registers (e.g. control registers), and structures (e.g. page tables).

Crate Feature Flags

  • 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.

Minimum Supported Rust Version (MSRV)

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-features

If the nightly feature or any of its sub-features is enabled (which is the default), a recent nightly is required.

Other OS development crates

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
    • Provides parsed versions of the CPUID data, rather than just raw binary values.
    • Support for AMD and Intel specific values.
    • Works on x86 and x86_64 systems, in both user and kernel mode.
  • uefi: abstractions for UEFI (the successor to BIOS)
    • Provides UEFI tables, functions, and types.
    • Useful for writing UEFI applications, or calling UEFI functions from your OS.
    • Works on a variety of modern platforms, not just x86_64.
  • volatile: interface to read_volatile and write_volatile
    • Makes it easier to program MMIO interfaces and devices.
    • Works on any Rust target.

Dependencies

~200KB