This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
rustboyadvance-ng/src/lib.rs
Michel Heily eb2a1a02fe Implement background scrolling!
tonc's brin_demo.gba now works as intended :)


Former-commit-id: 596c063c5968534f42e42f52203c85262b9c6fa2
2019-07-31 00:52:46 +03:00

24 lines
371 B
Rust

#[macro_use]
extern crate enum_primitive_derive;
extern crate num;
extern crate num_traits;
extern crate bit;
extern crate byteorder;
extern crate rustyline;
extern crate nom;
extern crate ansi_term;
extern crate colored; // not needed in Rust 2018
#[macro_use]
pub mod util;
pub mod backend;
pub mod core;
pub mod debugger;
pub mod disass;
pub mod minifb_backend;