Update project structure

This commit is contained in:
Werner
2021-12-25 08:20:21 -03:00
parent ddd78713ba
commit 4f9a05286c
6 changed files with 13 additions and 7 deletions

12
Source/Main.rs Normal file
View File

@ -0,0 +1,12 @@
#![no_std]
#![no_main]
#![allow(non_snake_case)]
#![allow(unused_imports)]
use panic_halt;
use prussia_rt;
#[no_mangle]
fn main() -> ! {
loop {}
}