init commit

This commit is contained in:
2025-02-19 11:00:04 +01:00
commit 5044425a9a
7 changed files with 333 additions and 0 deletions

16
src/main.rs Normal file
View File

@ -0,0 +1,16 @@
#![no_std]
#![no_main]
use core::panic::PanicInfo;
/// Entry point (not called like a normal main function)
#[no_mangle]
pub extern "C" fn _start() -> ! {
loop {}
}
/// Panic handler
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
loop {}
}