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.");
macro_rules! qemu_println {
() => { ... };
($($arg:tt)*) => { ... };
}
Print a string with newline to the console.
use qemu_print::qemu_println;
qemu_println!("hello world.");