mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
11 lines
269 B
Rust
11 lines
269 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(gba: agb::Gba) -> ! {
|
||
|
combo::main(gba);
|
||
|
}
|