Skip to content
Snippets Groups Projects
Verified Commit 2ab9afcb authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Move disk to OS abstraction

parent 1a9fdeb7
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ use linked_list_allocator::LockedHeap;
use log::error;
use spin::Mutex;
use self::disk::DiskBios;
use self::os::DiskBios;
use self::logger::LOGGER;
use self::memory_map::memory_map;
use self::thunk::ThunkData;
......@@ -32,9 +32,9 @@ use self::vga::{VgaTextBlock, VgaTextColor, Vga};
#[macro_use]
mod macros;
mod disk;
mod logger;
mod memory_map;
mod os;
mod paging;
mod panic;
mod thunk;
......
File moved
pub use self::disk::DiskBios;
mod disk;
#[cfg(all(target_arch = "x86", target_os = "none"))]
pub use self::bios::*;
#[cfg(all(target_arch = "x86", target_os = "none"))]
mod bios;
#[cfg(target_os = "uefi")]
pub use self::uefi::*;
#[cfg(target_os = "uefi")]
mod uefi;
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