1
0
Fork 0
mirror of https://github.com/italicsjenga/gba.git synced 2025-02-23 23:07:49 +11:00
gba/examples/asm_scratch.rs

17 lines
264 B
Rust

#![no_std]
#![no_main]
#![allow(unused_imports)]
//! Scratch space for checking the asm output of stuff.
use gba::prelude::*;
#[panic_handler]
fn panic_handler(_: &core::panic::PanicInfo) -> ! {
loop {}
}
#[no_mangle]
extern "C" fn main() -> ! {
loop {}
}