Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 675 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 675 Bytes

ch8-rs

A very basic emulator for CHIP-8 architecture made in Rust.

alt text

Playing

A rom can be played by executing the following command:

./ch8-rs [optional: --debug] <path_to_rom_file>

Building

An installation of Rust and SDL2 is required to build this project. SDL2 must be manually extracted to your Rust directory, a detailed walkthrough for this is available here.

Once the above step is completed you can build the application by simply running the following command:

cargo build [optional: --release]