Use agb rather than gba

This commit is contained in:
Gwilym Kuiper 2021-04-16 00:23:02 +01:00 committed by Corwin
parent 781fc291f0
commit 4bd856387c

View file

@ -1,13 +1,13 @@
#![no_std]
#![feature(start)]
extern crate gba;
extern crate agb;
use gba::sound;
use agb::sound;
#[start]
fn main(_argc: isize, _argv: *const *const u8) -> isize {
let gba = gba::Gba::new();
let gba = agb::Gba::new();
gba.sound.enable();