mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
17 lines
306 B
Rust
17 lines
306 B
Rust
#![no_std]
|
|
#![no_main]
|
|
#![feature(custom_test_frameworks)]
|
|
#![reexport_test_harness_main = "test_main"]
|
|
#![test_runner(agb::test_runner::test_runner)]
|
|
|
|
mod save_test_common;
|
|
|
|
fn save_setup(gba: &mut agb::Gba) {
|
|
gba.save.init_flash_128k();
|
|
}
|
|
|
|
#[agb::entry]
|
|
fn entry(_gba: agb::Gba) -> ! {
|
|
loop {}
|
|
}
|