Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xhanyuu/chip8-interpreter
a binary to execute chip-8 files
https://github.com/0xhanyuu/chip8-interpreter
Last synced: about 1 month ago
JSON representation
a binary to execute chip-8 files
- Host: GitHub
- URL: https://github.com/0xhanyuu/chip8-interpreter
- Owner: 0xhanyuu
- License: bsd-3-clause
- Created: 2024-10-14T00:13:32.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-12-27T23:19:44.000Z (about 1 month ago)
- Last Synced: 2024-12-28T00:19:29.391Z (about 1 month ago)
- Language: C
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# chip8-interpreter
A 'chip8' interpreter program written in C to execute binary chip8 files.
## **Setup:**
Run `make all`.
This will produce object files from the C files and produce a binary called `chip8` that you may use to run any chip8 program.
## **Uninstall:**
Run `make clean`.
This will remove all object files and remove the binary file used to run chip8 programs.
## **Notes:**
This project is a work in progress. The interpreter has not been written and some opcodes are yet to be added.
The default compiler used for this project is `gcc` and may be substituted with any other compiler, as well as other compiler information found in the `Makefile`.