#![no_std] #![no_main] extern crate riscv_rt; extern crate panic_halt; use riscv_rt::entry; #[entry] fn main() -> ! { loop {} }