mirror of
https://github.com/italicsjenga/gba.git
synced 2024-12-24 03:11:29 +11:00
18 lines
264 B
Rust
18 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 {}
|
|
}
|