From 3c28324e833f125102ab0c2d968034ca929ad913 Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Wed, 13 Mar 2024 14:24:14 +0000 Subject: [PATCH] Make the DMA module public --- agb/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/agb/src/lib.rs b/agb/src/lib.rs index abc31960..03b83105 100644 --- a/agb/src/lib.rs +++ b/agb/src/lib.rs @@ -153,7 +153,8 @@ mod agbabi; mod bitarray; /// Implements everything relating to things that are displayed on screen. 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. pub mod input; /// Interacting with the GBA interrupts