mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-25 01:01:34 +11:00
17 lines
249 B
Rust
17 lines
249 B
Rust
#![no_std]
|
|
#![no_main]
|
|
|
|
extern crate agb;
|
|
|
|
use agb::display::example_logo;
|
|
|
|
#[no_mangle]
|
|
pub fn main() -> ! {
|
|
let mut gba = agb::Gba::new();
|
|
let mut gfx = gba.display.video.tiled0();
|
|
|
|
example_logo::display_logo(&mut gfx);
|
|
|
|
loop {}
|
|
}
|