macro_rules! sim_println {
($($arg:tt)*) => { ... };
}
Expand description
Prints to the simulator output, with a newline.
This may or not be the same as printing to the regular Rust standard output. It is preferable if you want, for example, ensure you are logging to the same log file that the simulator itself is writing to.
This will panic if it is called from a thread other than the main thread or during a startup routine
Analagous to println!()
.