Skip to content

Commit

Permalink
config: use MEMORY_END from mod boards #136
Browse files Browse the repository at this point in the history
  • Loading branch information
wyfcyx committed Jan 21, 2024
1 parent 2ce5e52 commit bcce8a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion os/src/boards/qemu.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pub const CLOCK_FREQ: usize = 12500000;
//pub const MEMORY_END: usize = 0x801000000;
pub const MEMORY_END: usize = 0x8800_0000;

pub const MMIO: &[(usize, usize)] = &[
(0x0010_0000, 0x00_2000), // VIRT_TEST/RTC in virt machine
Expand Down
3 changes: 1 addition & 2 deletions os/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
pub const USER_STACK_SIZE: usize = 4096 * 2;
pub const KERNEL_STACK_SIZE: usize = 4096 * 2;
pub const KERNEL_HEAP_SIZE: usize = 0x20_0000;
pub const MEMORY_END: usize = 0x80800000;
pub const PAGE_SIZE: usize = 0x1000;
pub const PAGE_SIZE_BITS: usize = 0xc;

pub const TRAMPOLINE: usize = usize::MAX - PAGE_SIZE + 1;
pub const TRAP_CONTEXT_BASE: usize = TRAMPOLINE - PAGE_SIZE;

pub use crate::board::{CLOCK_FREQ, MMIO};
pub use crate::board::{CLOCK_FREQ, MEMORY_END, MMIO};

0 comments on commit bcce8a3

Please sign in to comment.