k210 only can use 6M before configuring sdcard.

This commit is contained in:
Yifan Wu 2020-12-11 18:04:57 +08:00
parent a3496698b3
commit e5bd98973d
6 changed files with 11 additions and 13 deletions

View file

@ -1,7 +1,7 @@
pub const USER_STACK_SIZE: usize = 4096 * 2;
pub const KERNEL_STACK_SIZE: usize = 4096 * 2;
pub const KERNEL_HEAP_SIZE: usize = 0x30_0000;
pub const MEMORY_END: usize = 0x80800000;
pub const KERNEL_HEAP_SIZE: usize = 0x20_0000;
pub const MEMORY_END: usize = 0x80600000;
pub const PAGE_SIZE: usize = 0x1000;
pub const PAGE_SIZE_BITS: usize = 0xc;