Make the DMA module public

This commit is contained in:
Gwilym Inzani 2024-03-13 14:24:14 +00:00
parent 95b5e85f57
commit 3c28324e83

View file

@ -153,7 +153,8 @@ mod agbabi;
mod bitarray; mod bitarray;
/// Implements everything relating to things that are displayed on screen. /// Implements everything relating to things that are displayed on screen.
pub mod display; pub mod display;
mod dma; /// Provides access to the GBA's direct memory access (DMA) which is used for advanced effects
pub mod dma;
/// Button inputs to the system. /// Button inputs to the system.
pub mod input; pub mod input;
/// Interacting with the GBA interrupts /// Interacting with the GBA interrupts