Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bluestormdna/i8080-space-invaders

Intel i8080 Space Invaders Arcade Emulator
https://github.com/bluestormdna/i8080-space-invaders

8080 csharp emulator i8080 intel interpreter invaders space

Last synced: about 20 hours ago
JSON representation

Intel i8080 Space Invaders Arcade Emulator

Awesome Lists containing this project

README

        

# Space Invaders Intel 8080 Arcade Emulator

This is a C# coded Space Invaders Arcade Emulator that used the Intel 8080 CPU. It was primary coded as a learning exercise on hardware and emulation.

The CPU core can be reused as long as the memory and iobus interfaces are implemented.
It's not a timing sensitive implementation as branch cycles are not accurate because they dont have in account if the branches are executed or not.

All the CPU opcodes are implemented and it passes cpudiag.bin and 8080EX1 tests.

## Playing Space Invaders

The unzipped romset must be in the same directory as the executable.

It can be played with the following keys:

* Insert Coin: **1**
* Start: **Enter**
* Left: **Left** or **A**
* Right: **Right** or **D**
* Shoot: **Space**

> **Note:** You need to provide your own unzipped Space Invaders Rom Set:
> "invaders.h", "invaders.g", "invaders.f", "invaders.e". This is the standard **MAME** Space Invaders rom set.

![si](https://user-images.githubusercontent.com/28767885/47822270-d16ecb00-dd63-11e8-9b66-28c6dbf2f8c7.png)
![si2](https://user-images.githubusercontent.com/28767885/47822269-d16ecb00-dd63-11e8-800e-5ef4b3b13fe3.png)