Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • pigeonmoelleux/skavos
1 result
Show changes
Commits on Source (3)
//! Device interface
pub mod pci;
This diff is collapsed.
......@@ -2,6 +2,7 @@
//!
//! This kernel is meant to be minimal and make easy the loading of other external modules
pub mod device;
pub mod interrupt;
pub mod memory;
pub mod screen;
......@@ -65,9 +66,10 @@ pub fn init(boot_info: &'static mut BootInfo) {
// Initialization of the CPU interruptions
interrupt::init(rsdp_addr);
info!("Interruptions initialized");
println!("{:?}", device::pci::scan());
println!("Hello world!");
println!("It is currently {}.", CMOS.rtc());
}