blob: e4a9395afefb6d1c204561e0a219cc02bd7bcfdb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2021-2023 Gabriel Jensen.
pub mod application;
pub mod emulator;
pub const VERSION: u32 = 0x20;
pub const MEMORY_SIZE: usize = 0x0E010000;
pub const BOOTLOADER_SIZE: usize = 0x00004000;
pub const IMAGE_SIZE: usize = 0x02000000;
|