Macro qemu_print

Source
macro_rules! qemu_print {
    ($($arg:tt)*) => { ... };
}
Expand description

Print a string to the console.

ยงExamples

use qemu_print::qemu_print;

qemu_print!("hello world.");