adding std io idk

This commit is contained in:
2025-02-24 15:33:42 +00:00
parent 2cbe9641aa
commit d5b15826e2
6 changed files with 12 additions and 4 deletions
+6
View File
@@ -0,0 +1,6 @@
pub use crate::drivers::io::{
ascii::{_print, _print_err, _print_log},
print, print_log, printerr, println, println_log, printlnerr,
serial::_serial_write,
serial_print, serial_println,
};
+2
View File
@@ -0,0 +1,2 @@
mod io;
pub use io::*;
+1
View File
@@ -1,2 +1,3 @@
pub mod application;
pub mod io;
pub mod maths;