libnds-rs/examples/mvp/main.rs
Conando 3f315a25c9 Project restructuring
Set the project up to use cargo workspaces
2024-02-26 00:00:39 +01:00

20 lines
325 B
Rust

#![no_std]
#![feature(start)]
extern crate nitro_rs;
#[cfg(target_os = "nintendo_ds_arm7")]
mod arm7;
#[cfg(target_os = "nintendo_ds_arm9")]
mod arm9;
#[global_allocator]
static ALLOCATOR: libc_alloc::LibcAlloc = libc_alloc::LibcAlloc;
#[panic_handler]
fn panic(_info: &core::panic::PanicInfo) -> ! {
loop {
}
}