mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 16:51:33 +11:00
11 lines
294 B
Rust
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);
|
|
}
|