Skip to content

mpostaire/puce8

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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