Skip to content
Snippets Groups Projects
Verified Commit d5a4486d authored by pigeonmoelleux's avatar pigeonmoelleux 💬
Browse files

chore: preparation to add block manipulation

parent caaa1692
No related branches found
No related tags found
1 merge request!5Draft: Resolve "Implement ext2 support"
//! Structures and traits for block manipulation
//! Device interface
pub mod pci;
use crate::println;
mod block;
mod pci;
mod storage;
pub fn init() {
let devices = pci::scan();
println!("{:?}", devices);
}
//! Interface to manage storage devices and controllers
......@@ -68,7 +68,8 @@ pub fn init(boot_info: &'static mut BootInfo) {
interrupt::init(rsdp_addr);
info!("Interruptions initialized");
println!("{:?}", device::pci::scan());
// Initialization of the devices
device::init();
println!("Hello world!");
println!("It is currently {}.", CMOS.rtc());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment