10 lines
102 B
Rust
10 lines
102 B
Rust
mod memory;
|
|
mod address;
|
|
mod opcodes;
|
|
mod cpu;
|
|
mod bus;
|
|
|
|
fn main() {
|
|
println!("Hello, world!");
|
|
}
|