Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 761 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 761 Bytes

puce8

A chip8 emulator.

You can compile and run it on your machine or use it in your browser here.

Screenshots

ibm logo

pong

Build

# 1. Clone this repository
git clone https://github.com/mpostaire/puce8.git
# 2. cd into the cloned repository
cd puce8
# 3. Compile puce8 (quick run: cargo run -- path/to/bin.ch8)
cargo build --release
# 4. The binary is located in the target/release directory
cd target/release
# 5. Run it
./puce8 path/to/bin.ch8

Resources used