[sq] publish mmu mod

This commit is contained in:
Berkus Decker 2019-01-21 19:22:32 +02:00
parent d04c844bbb
commit 79218ff2dd
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ mod boot;
mod memory;
pub mod mmu;
pub use self::memory::{PhysicalAddress, VirtualAddress};
pub use mmu::*;
use cortex_a::{asm, barrier, regs::*};

View File

@ -52,7 +52,7 @@ fn kmain() -> ! {
// uart.write_str(); // shall this?
unsafe {
aarch64::mmu::init();
mmu::init();
}
if let Some(mut display) = VC::init_fb(Size2d { x: 800, y: 600 } /*, &mut uart*/) {