init commit

This commit is contained in:
Conzer 2024-12-03 14:37:56 -05:00
commit 8c4afcd956
5 changed files with 33 additions and 0 deletions

13
src/main.rs Normal file
View file

@ -0,0 +1,13 @@
#![no_std]
#![no_main]
use core::panic::PanicInfo;
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
loop {}
}
#[no_mangle]
pub extern "C" fn _start() -> ! {
loop {}
}