Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/willpower3309/cli-chip-8
A CHIP-8 emulator written in C that uses a CLI as a display
https://github.com/willpower3309/cli-chip-8
c chip8 chip8-emulator chip8-interpreter emulation emulator
Last synced: 8 days ago
JSON representation
A CHIP-8 emulator written in C that uses a CLI as a display
- Host: GitHub
- URL: https://github.com/willpower3309/cli-chip-8
- Owner: WillPower3309
- Created: 2021-10-09T17:40:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-02T02:53:39.000Z (over 2 years ago)
- Last Synced: 2024-11-16T09:17:18.502Z (2 months ago)
- Topics: c, chip8, chip8-emulator, chip8-interpreter, emulation, emulator
- Language: C
- Homepage:
- Size: 50.8 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CLI-CHIP-8
A CHIP-8 emulator written in C that uses a CLI as its display using the ncurses library. The purpose of this project is twofold:
+ it functions as a cool program that a user can use to play retro chip-8 games in their terminal emulator
+ acts as a minimal and well documented emulator to demonstrate basic emulation concepts to the reader## Usage
```
./c8 PATH_TO_ROM
```## Thanks
The following resource was immensely helpful in the development of this project:
+ [Guide to making a CHIP-8 emulator](https://tobiasvl.github.io/blog/write-a-chip-8-emulator/)