forked from M-Labs/zynq-rs
20 lines
511 B
Rust
20 lines
511 B
Rust
use libboard_zynq::{slcr, print, println};
|
|
|
|
#[panic_handler]
|
|
fn panic(info: &core::panic::PanicInfo) -> ! {
|
|
print!("panic at ");
|
|
if let Some(location) = info.location() {
|
|
print!("{}:{}:{}", location.file(), location.line(), location.column());
|
|
} else {
|
|
print!("unknown location");
|
|
}
|
|
if let Some(message) = info.message() {
|
|
println!(": {}", message);
|
|
} else {
|
|
println!("");
|
|
}
|
|
|
|
slcr::RegisterBlock::unlocked(|slcr| slcr.soft_reset());
|
|
loop {}
|
|
}
|