Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sgbasaraner/goc8
A Chip-8 emulator written in Golang.
https://github.com/sgbasaraner/goc8
chip-8 emudev emulation emulator go golang
Last synced: about 2 months ago
JSON representation
A Chip-8 emulator written in Golang.
- Host: GitHub
- URL: https://github.com/sgbasaraner/goc8
- Owner: sgbasaraner
- Created: 2021-05-06T15:15:26.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T14:29:28.000Z (over 3 years ago)
- Last Synced: 2024-08-03T23:29:20.866Z (5 months ago)
- Topics: chip-8, emudev, emulation, emulator, go, golang
- Language: Go
- Homepage:
- Size: 12.7 KB
- Stars: 7
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-golang-repositories - goc8 - 8 emulator written in Golang. (Repositories)
README
# goc8
A Chip-8 emulator written in Golang.
Depends on [ebiten](https://ebiten.org) for graphics rendering.
## Usage Without Installation```bash
go run main.go invaders.c8
```## Installation
```bash
go install
```
## Acknowledgements- [Cowgod's Chip-8 Technical Reference](http://devernay.free.fr/hacks/chip8/C8TECH10.HTM)
- [How to write an emulator (Uses C++)](https://multigesture.net/articles/how-to-write-an-emulator-chip-8-interpreter/)