eb2a1a02fe
tonc's brin_demo.gba now works as intended :) Former-commit-id: 596c063c5968534f42e42f52203c85262b9c6fa2
24 lines
371 B
Rust
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;
|