Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 835 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 835 Bytes
pong tetris
snake breakout

What's this?

CHIP-8 is a video game console from the '70s. Except no physical CHIP-8 machines were actually made -- CHIP-8 is a virtual machine, designed to be simulated by existing physical machines.

This is a CHIP-8 emulator, which can run programs written for CHIP-8.

To try it out, install Rust, and run:

$ cargo run --release < games/snake.ch8

The controls for the snake game are WASD for up/left/down/right.

For more information on CHIP-8, check out the Wikipedia article. There's also a nice technical reference.