1/*!
2A module with low-level architecture dependent routines.
3
4These routines are useful as primitives for tasks not covered by the higher
5level crate API.
6*/
7
8pub mod all;
9pub(crate) mod generic;
10
11#[cfg(target_arch = "aarch64")]
12pub mod aarch64;
13#[cfg(target_arch = "wasm32")]
14pub mod wasm32;
15#[cfg(target_arch = "x86_64")]
16pub mod x86_64;
17