Files
nel_os_uefi/nel_os_kernel/src/constant.rs
Masato Imai b215f0010f
Some checks failed
Check / Build ISO (nightly-2025-04-27) (push) Failing after 43s
support low ram machine
2025-08-22 12:59:05 +00:00

17 lines
553 B
Rust

pub const BANNER: &str = r#" _
_ __ ___| | ___ ___
| '_ \ / _ \ | / _ \/ __|
| | | | __/ | | (_) \__ \
|_| |_|\___|_|___\___/|___/
|_____| "#;
pub const PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
pub const KERNEL_STACK_SIZE: usize = 1024 * 1024;
pub const HEAP_START: usize = 0x4444_4444_0000;
pub const HEAP_SIZE: usize = 128 * 1024;
pub const PAGE_SIZE: usize = 4096;
pub const BITS_PER_ENTRY: usize = 8 * core::mem::size_of::<usize>();