chip8_emulator_rs/
lib.rs

1// Constants
2const SCREEN_WIDTH: usize = 64;
3const SCREEN_HEIGHT: usize = 32;
4
5pub mod cpu;
6
7// Modules for other parts of emulator
8pub mod audio;
9pub mod input;
10pub mod video;