Macro rstubs::device::print

source ·
macro_rules! print {
    (dbg: $($arg:tt)*) => { ... };
    ($($arg:tt)*) => { ... };
}
Expand description

Macro for printing to the cga screen.

// print to the kout screen
print!("Hello World!");
// print to the dbg screen
print!(dbg: "Hello World!");