mirror of
https://github.com/italicsjenga/gba.git
synced 2025-01-26 01:16:33 +11:00
13 lines
345 B
Rust
13 lines
345 B
Rust
//! 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;
|
|
pub mod dma;
|
|
pub mod keypad;
|