Skip to content

Instantly share code, notes, and snippets.

@agrif
Created July 8, 2020 01:15
Show Gist options
  • Save agrif/8e6aa96ed992f6d9bc3f8b81e9caf8f3 to your computer and use it in GitHub Desktop.
Save agrif/8e6aa96ed992f6d9bc3f8b81e9caf8f3 to your computer and use it in GitHub Desktop.
#![no_std]
#![no_main]
#[panic_handler]
fn panic(_info: &core::panic::PanicInfo) -> ! {
loop {}
}
#[no_mangle]
pub extern "C" fn _start() -> u32 {
42
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment