rusty-nes/src/main.rs

15 lines
165 B
Rust
Raw Normal View History

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