24 lines
502 B
Rust
24 lines
502 B
Rust
//! Prints "Hello, world!" on the OpenOCD console using semihosting
|
|
|
|
#![no_std]
|
|
|
|
#[macro_use]
|
|
extern crate cortex_m;
|
|
extern crate cortex_m_rt;
|
|
extern crate {{name}};
|
|
|
|
use cortex_m::exception;
|
|
use {{name}}::interrupt;
|
|
|
|
fn main() {
|
|
hprintln!("Hello, world!");
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub static _INTERRUPTS: interrupt::Handlers =
|
|
interrupt::Handlers { ..interrupt::DEFAULT_HANDLERS };
|
|
|
|
#[no_mangle]
|
|
pub static _EXCEPTIONS: exception::Handlers =
|
|
exception::Handlers { ..exception::DEFAULT_HANDLERS };
|