Introducing the hottest library crate in town (libk!)

This commit is contained in:
2025-02-23 04:42:30 +00:00
parent c763f512f1
commit 43b1db41ca
30 changed files with 1491 additions and 132 deletions
+15
View File
@@ -0,0 +1,15 @@
#![no_std]
// alloc
// io : serial, framebuffer, ascii(?), keyboard
// ?????
// scheduling / tasks : async
pub mod alloc;
pub mod io;
pub mod scheduling;
/// Re-exports most of the IO macros.
pub mod prelude {
pub use crate::{print_log, println, println_log, serial_print, serial_println};
}