Add doc comments for top level modules

This commit is contained in:
GBA bot 2022-01-02 18:27:23 +00:00
parent 0b986df563
commit 99146ac048

View file

@ -148,10 +148,12 @@ mod bitarray;
pub mod display; pub mod display;
/// Button inputs to the system. /// Button inputs to the system.
pub mod input; pub mod input;
#[doc(hidden)] // hide for now as the implementation in here is unsound
pub mod interrupt; pub mod interrupt;
mod memory_mapped; mod memory_mapped;
/// Implements logging to the mgba emulator. /// Implements logging to the mgba emulator.
pub mod mgba; pub mod mgba;
/// Implementation of fixnums for working with non-integer values.
pub mod number; pub mod number;
mod single; mod single;
/// Implements sound output. /// Implements sound output.