gba 0.15.0

A crate for 'raw' style GBA development. If you want a 'managed' experience, try the `agb` crate instead.
Documentation
//! A module that just re-exports all the other modules of the crate.

#[cfg(feature = "on_gba")]
pub use crate::{
  asm_runtime::*, bios::*, dma::*, gba_cell::*, mgba::*, mmio::*,
  RUST_IRQ_HANDLER,
};

pub use crate::{
  builtin_art::*,
  fixed::*,
  include_aligned_bytes,
  interrupts::*,
  keys::*,
  sound::*,
  timers::*,
  video::{obj::*, *},
  Align4,
};