Files
RTS10_labs/lab1.8/ledjes/examples/hello.rs
2024-10-28 12:05:10 +01:00

17 lines
274 B
Rust

//! Prints "Hello, world!" on the host console using semihosting
#![no_main]
#![no_std]
use panic_halt as _;
use cortex_m_rt::entry;
use cortex_m_semihosting::hprintln;
#[entry]
fn main() -> ! {
hprintln!("Hello, world!");//.unwrap();
loop {}
}