Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mizrael/8080-emulator-net
https://github.com/mizrael/8080-emulator-net
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/mizrael/8080-emulator-net
- Owner: mizrael
- License: mit
- Created: 2019-09-17T21:08:44.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-20T01:52:38.000Z (over 1 year ago)
- Last Synced: 2024-05-01T20:51:09.836Z (7 months ago)
- Language: C#
- Size: 495 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 8080-emulator-net
Simple intel 8080 emulator, written in C# with .NET Core. It's a learning project, just for fun.
OpCode reference table can be found [here](http://www.emulator101.com/reference/8080-by-opcode.html).
At the moment I have implemented only the bare minimun OPs to make Space Invaders "run".
Rendering is handled with [Monogame](http://www.monogame.net/).
![Space Invaders](https://raw.githubusercontent.com/mizrael/8080-emulator-net/master/screenshots/space_invaders1.png)
## Building and running
Simply run `dotnet build` from the root folder. Then run:
1. `cd emu8080.Game`
1. `dotnet run`### OSX
If you're trying to build on OSX, you might need to install some dependencies with `brew install mono-libgdiplus`## TODO
- proper interrupt handling
- audio
- input