Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bluestormdna/i8080-space-invaders
- Owner: BluestormDNA
- Created: 2018-10-27T21:17:41.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-31T22:26:50.000Z (about 6 years ago)
- Last Synced: 2025-01-23T18:50:10.046Z (4 days ago)
- Topics: 8080, csharp, emulator, i8080, intel, interpreter, invaders, space
- Language: C#
- Homepage:
- Size: 38.1 KB
- Stars: 28
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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)