11 lines
102 B
Rust
11 lines
102 B
Rust
![]() |
mod nes;
|
||
|
mod bus;
|
||
|
mod cpu;
|
||
|
|
||
|
use nes::NES;
|
||
|
|
||
|
fn main() {
|
||
|
let nes = NES::new();
|
||
|
nes.powerup();
|
||
|
}
|