rust/tests/run-make/thumb-none-qemu/example/src/main.rs
2023-01-11 09:32:08 +00:00

25 lines
499 B
Rust

#![no_main]
#![no_std]
use core::fmt::Write;
use cortex_m::asm;
use cortex_m_rt::entry;
use cortex_m_semihosting as semihosting;
use panic_halt as _;
#[entry]
fn main() -> ! {
let x = 42;
loop {
asm::nop();
// write something through semihosting interface
let mut hstdout = semihosting::hio::hstdout().unwrap();
let _ = write!(hstdout, "x = {}\n", x);
// exit from qemu
semihosting::debug::exit(semihosting::debug::EXIT_SUCCESS);
}
}