diff options
author | Determinant <[email protected]> | 2018-02-05 10:59:10 -0500 |
---|---|---|
committer | Determinant <[email protected]> | 2018-02-05 10:59:10 -0500 |
commit | 34595aa8d6eab32e5a7eff13f10a56005bb98d99 (patch) | |
tree | 95d89f5791fe445e1d9fe2454ccc36f90c3470c0 /src | |
parent | cc32f29eedc10a7756820c491c6797c27054c433 (diff) |
...
Diffstat (limited to 'src')
-rw-r--r-- | src/bin.rs | 2 | ||||
-rw-r--r-- | src/lib.rs | 16 |
2 files changed, 9 insertions, 9 deletions
@@ -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 <[email protected]>") .about("A Rust NES emulator") .arg(Arg::with_name("scale") @@ -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; |