You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
380 B
8 lines
380 B
pub const MEMORY_OFFSET: usize = 0;
|
|
pub const KERNEL_OFFSET: usize = 0xffffff00_00000000;
|
|
pub const KERNEL_HEAP_SIZE: usize = 8 * 1024 * 1024; // 8 MB
|
|
pub const PHYSICAL_MEMORY_OFFSET: usize = 0xfffffc00_00000000;
|
|
|
|
pub const USER_STACK_OFFSET: usize = 0x00008000_00000000 - USER_STACK_SIZE;
|
|
pub const USER_STACK_SIZE: usize = 8 * 1024 * 1024; // 8 MB, the default config of Linux
|