aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bin.rs2
-rw-r--r--src/lib.rs16
2 files changed, 9 insertions, 9 deletions
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 <tederminant@gmail.com>")
.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;