14 lines
151 B
Rust
14 lines
151 B
Rust
mod nes;
|
|
mod bus;
|
|
mod cpu;
|
|
mod instructions;
|
|
mod addressing;
|
|
mod cartridge;
|
|
|
|
use nes::NES;
|
|
|
|
fn main() {
|
|
let nes = NES::new();
|
|
nes.powerup();
|
|
}
|