agb/examples/the-hat-chooses-the-wizard/src/main.rs
2022-12-01 17:16:53 +00:00

11 lines
294 B
Rust

#![no_std]
#![no_main]
#![cfg_attr(test, feature(custom_test_frameworks))]
#![cfg_attr(test, reexport_test_harness_main = "test_main")]
#![cfg_attr(test, test_runner(agb::test_runner::test_runner))]
#[agb::entry]
fn entry(mut gba: agb::Gba) -> ! {
the_hat_chooses_the_wizard::main(gba);
}