23 lines
419 B
Rust
23 lines
419 B
Rust
//! Prints "Hello, world!" on the host console using semihosting
|
|
|
|
#![no_main]
|
|
#![no_std]
|
|
|
|
extern crate panic_halt;
|
|
|
|
use core::fmt::Write;
|
|
|
|
use cortex_m_rt::entry;
|
|
use cortex_m_semihosting::{debug, hio};
|
|
|
|
#[entry]
|
|
fn main() -> ! {
|
|
let mut stdout = hio::hstdout().unwrap();
|
|
writeln!(stdout, "Hello, world!").unwrap();
|
|
|
|
// exit QEMU or the debugger section
|
|
debug::exit(debug::EXIT_SUCCESS);
|
|
|
|
loop {}
|
|
}
|