diff options
Diffstat (limited to 'src/luma.rs')
-rw-r--r-- | src/luma.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/luma.rs b/src/luma.rs index dd6c837..e4a9395 100644 --- a/src/luma.rs +++ b/src/luma.rs @@ -1,11 +1,11 @@ // Copyright 2021-2023 Gabriel Jensen. -pub mod app; -pub mod emu; +pub mod application; +pub mod emulator; -pub const VER: u32 = 0x1F; +pub const VERSION: u32 = 0x20; -pub const MEMSIZ: usize = 0x0E010000; +pub const MEMORY_SIZE: usize = 0x0E010000; -pub const BTLSIZ: usize = 0x00004000; -pub const IMGSIZ: usize = 0x02000000; +pub const BOOTLOADER_SIZE: usize = 0x00004000; +pub const IMAGE_SIZE: usize = 0x02000000; |