diff --git a/src/runtime/src/panic.rs b/src/runtime/src/panic.rs index 1eb86af3..ab9b8d22 100644 --- a/src/runtime/src/panic.rs +++ b/src/runtime/src/panic.rs @@ -18,9 +18,9 @@ fn panic(info: &core::panic::PanicInfo) -> ! { let _ = backtrace(|ip| { // Backtrace gives us the return address, i.e. the address after the delay slot, // but we're interested in the call instruction. - println!("{:#08x}", ip - 2 * 4); + print!("{:#08x} ", ip - 2 * 4); }); - println!("End backtrace"); + println!("\nEnd backtrace"); loop {} }