gba/src/base.rs
2018-12-20 18:08:54 -07:00

10 lines
242 B
Rust

//! Holds fundamental types/ops which the rest of the crate it built on.
pub mod fixed_point;
//pub(crate) use self::fixed_point::*;
pub mod volatile;
pub(crate) use self::volatile::*;
pub mod builtins;
//pub(crate) use self::builtins::*;