Crates.io | chipper |
lib.rs | chipper |
version | 0.1.0 |
source | src |
created_at | 2017-09-29 21:08:15.961647 |
updated_at | 2017-09-29 21:08:15.961647 |
description | CHIP-8 Emulator/Interpreter |
homepage | https://github.com/Haggus/chipper |
repository | https://github.com/Haggus/chipper |
max_upload_size | |
id | 33939 |
size | 45,603 |
CHIP-8 Emulator/Interpreter
CHIP-8 is an interpreted programming language, developed by Joseph Weisbecker. It was initially used on the COSMAC VIP and Telmac 1800 8-bit microcomputers in the mid-1970s. CHIP-8 programs are run on a CHIP-8 virtual machine. It was made to allow video games to be more easily programmed for said computers.
Requires SDL2 to be installed
sudo apt-get install libsdl2-dev
Build
cargo build --release
There are 23 public domain roms available in roms directory.
To load a PONG2 game, run:
cargo run --release -- roms/PONG2
Links I've used to create this project