mirror of
https://github.com/f-mer/chip8
synced 2024-12-25 21:58:45 +01:00
Mirror of https://github.com/f-mer/chip8
bin | ||
lib | ||
static | ||
test | ||
.gitignore | ||
Gemfile | ||
Gemfile.lock | ||
Rakefile | ||
README.md |
Chip-8
A Chip-8 bytecode interpreter written in the ruby programming language.
Installation
⚠️ Heads up! This has only been tested on OSX.
- Install SDL by executing
brew install sdl
. It is used for handling keyboard events and drawing onto the screen. - Clone the repository with the
git clone
command - Navigate into the cloned folder
- Execute
bundle
to install required gems
Usage
$ bin/chip8
Usage: chip8 [rom]
Options:
--debug Prints every instruction before executing
--dump-memory Loads the rom and dumps the memory content
Testing
Minitest is used fot testing. Tests can be run by executing bundle exec rake
.