mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-26 09:41:34 +11:00
17 lines
300 B
Rust
17 lines
300 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_sram();
|
||
|
}
|
||
|
|
||
|
#[agb::entry]
|
||
|
fn entry(_gba: agb::Gba) -> ! {
|
||
|
loop {}
|
||
|
}
|