Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 665 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 665 Bytes

SpaceChip8

A Javascript emulator for the famous Chip-8 processor. This is a learning project following the tutorial from Alexander Dickson and his repository Chip-8-Emulator.

Running

You may use whatever server system to run the emulator on your browser. I used http-server.

Implementation

Since this is a simple emulator and doesn't need full optimization, I used a big switch loop to handle every cpu opcode. Next, I tried a NES emulator that you can check here.