//! Changing the panic handler
//!
//! The easiest way to change the panic handler is to use a different [panic implementation
//! crate][0].
//!
//! [0]: https://crates.io/keywords/panic-impl
//!
//! ---
extern crate cortex_m;
extern crate cortex_m_rt;
// extern crate panic_abort;
extern crate panic_semihosting; // reports panic messages to the host stderr using semihosting
use asm;
// As we are not using interrupts, we just register a dummy catch all handler
static INTERRUPTS: = ;
extern "C"