mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
Make the hash_map mod public
This commit is contained in:
parent
a459a4811c
commit
05b8accaec
|
@ -152,6 +152,8 @@ mod memory_mapped;
|
|||
pub mod mgba;
|
||||
/// Implementation of fixnums for working with non-integer values.
|
||||
pub use agb_fixnum as fixnum;
|
||||
/// Contains an implementation of a hashmap which suits the gameboy advance's hardware
|
||||
pub mod hash_map;
|
||||
mod single;
|
||||
/// Implements sound output.
|
||||
pub mod sound;
|
||||
|
@ -160,8 +162,6 @@ pub mod syscall;
|
|||
/// Interactions with the internal timers
|
||||
pub mod timer;
|
||||
|
||||
mod hash_map;
|
||||
|
||||
#[cfg(not(test))]
|
||||
#[panic_handler]
|
||||
#[allow(unused_must_use)]
|
||||
|
|
Loading…
Reference in a new issue