Move command into its own file.

This commit is contained in:
Drew Galbraith 2025-02-01 14:49:41 -08:00
parent 4efeca661e
commit e34540b77e
4 changed files with 122 additions and 115 deletions

View file

@ -1,10 +1,11 @@
mod ahci_command;
mod command;
mod controller;
mod hba;
mod port;
mod port_controller;
pub use command::Command;
pub use controller::identify_ports;
pub use controller::spawn_irq_thread;
pub use controller::AhciController;
pub use port_controller::Command;