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.
13 lines
367 B
13 lines
367 B
/// Platform specific constants
|
|
///
|
|
pub use super::board::consts::*;
|
|
|
|
pub const MEMORY_OFFSET: usize = 0x80000000;
|
|
pub const KERNEL_OFFSET: usize = 0x80100000;
|
|
pub const PHYSICAL_MEMORY_OFFSET: usize = 0x80000000;
|
|
|
|
pub const USER_STACK_OFFSET: usize = 0x70000000 - USER_STACK_SIZE;
|
|
pub const USER_STACK_SIZE: usize = 0x10000;
|
|
|
|
pub const MAX_DTB_SIZE: usize = 0x2000;
|