Files
rust-ps2/Source/Main.rs
2021-12-25 08:20:21 -03:00

13 lines
153 B
Rust

#![no_std]
#![no_main]
#![allow(non_snake_case)]
#![allow(unused_imports)]
use panic_halt;
use prussia_rt;
#[no_mangle]
fn main() -> ! {
loop {}
}