Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 718 Bytes

README.md

File metadata and controls

18 lines (10 loc) · 718 Bytes

ChocolateChip

🍪 Round 2 With the CHIP-8 Emulator

All roms I tested work

Some very useful resources:

Chip 8's Wikipedia Page

Cowgod's Chip 8 Technical Reference

Improved Stuff in Rewrite;

  • SDL instead of SFML I've found SDL to be much easier to use, plus it's much more widespread.

  • Much shorter and concise operations All the usual operands are grabbed at the beginning, makes code much shorter (most of the opcodes are one-liners), consistent, and less prone to error.

  • Fixed a bunch of bugs The old version had some rampant bug issues that were hard to track down due to how it was written