Macro qemu_println

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

Print a string with newline to the console.

use qemu_print::qemu_println;

qemu_println!("hello world.");