Rename mmio to IoMem

This commit is contained in:
Yuke Peng
2023-07-23 03:40:41 -07:00
committed by Tate, Hongliang Tian
parent a6dcdf6952
commit 49f2750108
6 changed files with 34 additions and 34 deletions

View File

@ -24,7 +24,7 @@ pub mod config;
pub mod cpu;
mod error;
pub mod logger;
pub mod mmio;
pub mod io_mem;
pub mod prelude;
pub mod sync;
pub mod task;
@ -52,7 +52,7 @@ pub fn init() {
vm::init();
trap::init();
arch::after_all_init();
mmio::init();
io_mem::init();
bus::init();
register_irq_common_callback();
invoke_c_init_funcs();