agb/agb-tests/tests/test_save_sram.rs

17 lines
300 B
Rust
Raw Normal View History

2022-09-16 16:21:10 +10:00
#![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_sram();
}
#[agb::entry]
fn entry(_gba: agb::Gba) -> ! {
loop {}
}