aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2017-11-11 15:23:48 -0500
committerDeterminant <ted.sybil@gmail.com>2017-11-11 15:23:48 -0500
commita600c658f7905e747bd9233b141de147972ef04c (patch)
tree97e9fff769d00235f14b63a969bfdac4a4b32380 /src/main.rs
parentbe7b9d3a1b49d8bf85ae3ace56889c3b27062e40 (diff)
add mapper and cartridge
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index e429932..4a963b6 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,7 +1,9 @@
extern crate core;
mod memory;
-mod ppu;
mod mos6502;
+mod ppu;
+mod cartridge;
+mod mapper;
fn main() {
/*
let code = [0xa9, 0x01, 0x8d, 0x00, 0x02, 0xa9, 0x05, 0x8d, 0x01, 0x02, 0xa9, 0x08, 0x8d, 0x02, 0x02 ];