//! 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;