mirror of
https://github.com/italicsjenga/gba.git
synced 2025-02-05 14:16:39 +11:00
14 lines
350 B
Rust
14 lines
350 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::*;
|
||
|
|
||
|
use gba_proc_macro::register_bit;
|
||
|
|
||
|
pub mod keypad;
|