mirror of
https://github.com/guilhermewerner/rust-ps2
synced 2025-06-15 13:24:19 +00:00
13 lines
153 B
Rust
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 {}
|
|
}
|