cat_dev/lib.rs
1#![doc = include_str!("../README.md")]
2#![allow(
3 // I dislike this rule... We import things elsewhere, usually outside of
4 // modules themselves.
5 clippy::module_name_repetitions,
6)]
7
8pub mod errors;
9pub mod fsemul;
10pub mod mion;
11#[macro_use]
12pub mod serial;
13
14/// A Wii-U Title ID.
15///
16/// Wii-U Title IDs are normally 64 bits, but are generally treated by the
17/// community as two seperate things. As the upper 32 bits represent the
18/// general properties of the title. While the bottom 32 bits usually uniquely
19/// identify the title itself.
20///
21/// TODO(mythra): find a better place to put this type.
22pub type TitleID = (u32, u32);