Skip to main content

irox_arch_x86_64/
lib.rs

1// SPDX-License-Identifier: MIT
2// Copyright 2023 IROX Contributors
3
4//!
5//! Intel x86-64 Architecture-specific bits & bobs
6//!
7#![cfg_attr(not(feature = "std"), no_std)]
8
9#[cfg(target_arch = "x86_64")]
10pub mod cpu;
11#[cfg(target_arch = "x86_64")]
12pub mod rand;