Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.08 KB

README.md

File metadata and controls

28 lines (21 loc) · 1.08 KB

haskell-chip8

an implementation of a CHIP-8 emulator in haskell using the opcodes described on wikipedia

how to use

build with either cabal (using hpack) or nix.

$ haskell-chip8 --help

Usage: haskell-chip8 ROM_FILE_PATH [-s|--max-stack-size MAX_STACK_SIZE] 
                     [-t|--tick-rate TICK_RATE_INTERVAL] [-v|--verbose]
  emulate execution of a CHIP-8 rom

Available options:
  ROM_FILE_PATH            path to rom file
  -s,--max-stack-size MAX_STACK_SIZE
                           max stack size / recursion depth (default: 50)
  -t,--tick-rate TICK_RATE_INTERVAL
                           tick rate in microseconds per instruction
                           (default: 2000)
  -v,--verbose             enable debug logging if flag is set
  -h,--help                Show this help text

this will create a window through which you can interact with the rom execution. use the keyboard keys 0 to 9 and a to f as described on the wikipedia page in the header above.