gba/src/io.rs

14 lines
345 B
Rust
Raw Normal View History

//! This module contains definitions and types for the IO Registers.
//!
//! ## Naming
//!
//! In the interest of making things easy to search for, all io register
//! constants are given the names used in the
//! [GBATEK](https://problemkaputt.de/gbatek.htm) technical description.
use super::*;
pub mod display;
2018-12-24 15:43:36 -07:00
pub mod dma;
pub mod keypad;