Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 648 Bytes

README.md

File metadata and controls

16 lines (9 loc) · 648 Bytes

Chip8 Emulator

Change the file name in the line 274 to load the game of your choic (in file named Chip_8.py).

Specifications

  • The Chip 8 has 35 opcode which are two bytes long. Check out all the 35 opcode here

  • The Chip 8 has 4K memory in total.

  • The Chip 8 has 15 8-bit general purpose registers named V0,V1 up to VE. The 16th register is used for the ‘carry flag’.

  • There is an Index register I and a program counter (pc) which can have a value from 0x000 to 0xFFF

  • Click here for more information