aboutsummaryrefslogtreecommitdiff
path: root/mirai/common/limits/boot.zig
blob: 76b4a0ddc6fde53e9da4db4e721e113934717e81 (plain)
1
2
3
4
5
6
7
//! Boot limits

pub const MAX_MEMORY_ENTRIES: usize = 32;
pub const MAX_BOOT_MESSAGES: usize = 100;
pub const MAX_MESSAGE_LENGTH: usize = 256;
pub const KERNEL_STACK_SIZE: usize = 16384;
pub const FONT_BUFFER_SIZE: usize = 8192;