mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-12 01:51:34 +11:00
17 lines
246 B
Rust
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 {}
|
|
}
|