mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-11 01:21:34 +11:00
Use agb rather than gba
This commit is contained in:
parent
781fc291f0
commit
4bd856387c
|
@ -1,13 +1,13 @@
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![feature(start)]
|
#![feature(start)]
|
||||||
|
|
||||||
extern crate gba;
|
extern crate agb;
|
||||||
|
|
||||||
use gba::sound;
|
use agb::sound;
|
||||||
|
|
||||||
#[start]
|
#[start]
|
||||||
fn main(_argc: isize, _argv: *const *const u8) -> isize {
|
fn main(_argc: isize, _argv: *const *const u8) -> isize {
|
||||||
let gba = gba::Gba::new();
|
let gba = agb::Gba::new();
|
||||||
|
|
||||||
gba.sound.enable();
|
gba.sound.enable();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue