aphelion_util/lib.rs
1#![warn(clippy::pedantic)]
2#![allow(clippy::unusual_byte_groupings)]
3
4/*!
5
6
7TODO: put some good documentation thats not just copy pasted from the typst doc...
8*/
9
10pub mod registers;
11pub mod nibble;
12pub mod instruction;
13pub mod interrupt;
14pub mod io;
15// TODO: useful operations here
16pub mod helper;
17
18/// DOCUMENTATION NEEDED!
19#[doc(hidden)]
20pub const TODO: () = ();