simple-ahci 0.1.1-preview.1

A simple AHCI (Advanced Host Controller Interface) driver for bare-metal and no_std environments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![no_std]

extern crate alloc;

mod ahci;
mod ata;
mod hal;
mod mmio;
mod types;

pub use ahci::AhciDriver;
pub use hal::Hal;