agb/examples/combo/src/main.rs

11 lines
269 B
Rust
Raw Normal View History

2022-12-02 04:16:53 +11:00
#![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(gba: agb::Gba) -> ! {
combo::main(gba);
}