An open API service indexing awesome lists of open source software.

https://github.com/alpacamax/python-chip8-emulator

A CHIP-8 Emulator implemented in Python3
https://github.com/alpacamax/python-chip8-emulator

chip-8 game python3

Last synced: about 1 year ago
JSON representation

A CHIP-8 Emulator implemented in Python3

Awesome Lists containing this project

README

          

# CHIP-8 Emulator

> **CHIP-8** is an interpreted programming language, developed by Joseph Weisbecker. It was initially used on the COSMAC VIP and Telmac 1800 8-bit microcomputers in the mid-1970s. CHIP-8 programs are run on a CHIP-8 virtual machine. It was made to allow video games to be more easily programmed for these computer

--[Wikipedia](https://en.wikipedia.org/wiki/Chip-8)

## Introduction

This is a python version CHIP-8 Emulator. Although it was originally created as a virtual machine, CHIP-8 could be treated as a simple game console. As a result, implementing this emulator is a good way to get a brief understanding of how computer works.

## Usage

```
pip3 install pygame
sudo apt install sox
git clone git@github.com:AlpacaMax/Python-CHIP8-Emulator
cd Python-CHIP8-Emulator
python3 chip8.py games/
```

## Screenshots

![IBM Logo](screenshots/IBMLogo.png)

![Bricks](screenshots/Bricks.png)

![Tetris](screenshots/Tetris.png)

![Space Invader](screenshots/SpaceInvader.png)

**Note:** If you don't like the color, you can go to `line 154` and `line 155` and change `self.zeroColor` and `self.oneColor`.

## More CHIP-8 ROMs(Games)

Visit [The Old Computer](https://www.theoldcomputer.com/roms/index.php?folder=Chip-8/Chip-8/Games) for more CHIP-8 games