Created
July 8, 2020 01:15
-
-
Save agrif/8e6aa96ed992f6d9bc3f8b81e9caf8f3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![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