This commit is contained in:
nora 2025-01-29 20:55:08 +01:00
commit 00afbbfea3
7 changed files with 660 additions and 0 deletions

10
test/example_exe.rs Normal file
View file

@ -0,0 +1,10 @@
#![no_std]
#![no_main]
#[panic_handler]
fn handle_panic(_: &core::panic::PanicInfo<'_>) -> ! {
loop {}
}
#[no_mangle]
pub fn main() {}