agb/agb-tests/tests/test_save_flash_64k.rs
2022-09-15 23:25:16 -07:00

17 lines
305 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_64k();
}
#[agb::entry]
fn entry(_gba: agb::Gba) -> ! {
loop {}
}