ax-cpu 0.6.3

Privileged instruction and structure abstractions for various CPU architectures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[macro_use]
mod macros;

mod context;
mod trap;
mod unaligned;

pub mod asm;
pub mod init;

#[cfg(feature = "uspace")]
pub mod uspace;

pub use self::{
    context::{FpuState, GeneralRegisters, TaskContext, TrapFrame},
    unaligned::UnalignedError,
};