rusty-nes/src/main.rs

15 lines
165 B
Rust
Raw Normal View History

2022-08-23 17:01:26 +00:00
mod nes;
mod bus;
mod cpu;
2022-08-23 20:11:25 +00:00
mod instructions;
mod addressing;
2022-08-23 17:40:48 +00:00
mod cartridge;
mod mnemonic;
2022-08-23 17:01:26 +00:00
use nes::NES;
fn main() {
let nes = NES::new();
nes.powerup();
}