cat_dev/fsemul/atapi/mod.rs
1//! Servers, and protocols related to ATAPI emulation.
2//!
3//! ATAPI Emulation is the actual hdd emulation parts of the CAT-DEV.
4//! Unlike SDIO, ATAPI acts like EXI and initiates a connection from the CAT-DEV
5//! to a host machine.
6//!
7//! This protocol much like SDIO though, ***IS NOT STANDARD***. I'm sorry if
8//! you got a search request for ATAPI, and were looking for actual real ATAPI
9//! code. Not this weird nintendo variant.
10
11#[cfg_attr(docsrs, doc(cfg(feature = "servers")))]
12#[cfg(feature = "servers")]
13pub mod server;