Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

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/)