blob: 73b5d5694bca230ec73b14eeb3a4ac216bece630 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![no_std]
#![no_main]
#[allow(unused_imports)]
use yaxpeax_arm;
#[panic_handler]
fn panic(_: &core::panic::PanicInfo) -> ! { loop {} }
#[no_mangle]
pub extern "C" fn _start() -> ! { loop {} }
|