agb/agb/examples/test_logo.rs
2021-08-07 16:37:32 +01:00

17 lines
246 B
Rust

#![no_std]
#![no_main]
extern crate agb;
use agb::display::example_logo;
#[agb::entry]
fn main() -> ! {
let mut gba = agb::Gba::new();
let mut gfx = gba.display.video.tiled0();
example_logo::display_logo(&mut gfx);
loop {}
}