From 34595aa8d6eab32e5a7eff13f10a56005bb98d99 Mon Sep 17 00:00:00 2001 From: Determinant Date: Mon, 5 Feb 2018 10:59:10 -0500 Subject: ... --- src/bin.rs | 2 +- src/lib.rs | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'src') diff --git a/src/bin.rs b/src/bin.rs index f70548e..7d6b745 100644 --- a/src/bin.rs +++ b/src/bin.rs @@ -444,7 +444,7 @@ fn print_cpu_trace(cpu: &CPU) { fn main() { let matches = App::new("RuNES") - .version("0.1") + .version("0.2") .author("Ted Yin ") .about("A Rust NES emulator") .arg(Arg::with_name("scale") diff --git a/src/lib.rs b/src/lib.rs index 53e1121..8f68905 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,10 +1,10 @@ #![no_std] //extern crate core; -mod utils; -mod memory; -#[macro_use] mod mos6502; -mod ppu; -mod apu; -mod cartridge; -mod mapper; -mod controller; +pub mod utils; +pub mod memory; +#[macro_use] pub mod mos6502; +pub mod ppu; +pub mod apu; +pub mod cartridge; +pub mod mapper; +pub mod controller; -- cgit v1.2.3-70-g09d2