Implement the PCI bus framework

This commit is contained in:
Yuke Peng
2023-07-23 03:31:43 -07:00
committed by Tate, Hongliang Tian
parent 13c4c614b5
commit a6dcdf6952
10 changed files with 1001 additions and 41 deletions

View File

@ -53,6 +53,7 @@ pub fn init() {
trap::init();
arch::after_all_init();
mmio::init();
bus::init();
register_irq_common_callback();
invoke_c_init_funcs();
}