Skip to content

Latest commit

 

History

History
36 lines (20 loc) · 688 Bytes

README.md

File metadata and controls

36 lines (20 loc) · 688 Bytes

Chipmunk

A CHIP-8 emulator written in nim

Getting Started

Building

You can compile chipmunk two different ways:

  • nim c chipmunk.nim
  • nimble build

Running

You can run chipmunk with:

  • ./chipmunk path/to/rom

Development

While developing you can easily run chipmunk while compiling with:

  • nim c -r chipmunk.nim path/to/rom

Testing

You can run the tests using nimble:

  • nimble test

Resources