A CHIP-8 emulator written in nim
You can compile chipmunk
two different ways:
nim c chipmunk.nim
nimble build
You can run chipmunk
with:
./chipmunk path/to/rom
While developing you can easily run chipmunk
while compiling with:
nim c -r chipmunk.nim path/to/rom
You can run the tests using nimble:
nimble test