aboutsummaryrefslogtreecommitdiff
path: root/src/io.rs
Commit message (Collapse)AuthorAge
* PS/2 Keyboard controller: baselineTianhao Wang2024-06-11
|
* pub(crate) use for println macrosTianhao Wang2024-06-11
| | | | | | The println! and print! macros are defined in submodule "io", I have to add this trick to make it work across the crate. Maybe there is a better way...
* add println! and panic! macroTianhao Wang2024-02-01
The rust lazy_static requires interior mutability. I have to include a Mutex impl (spin::Mutex). But I'd like to implement my own primitives.