Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/inanyan/chip8
CHIP-8 emulator and assembler
https://github.com/inanyan/chip8
assembler chip8 emulator gui
Last synced: about 3 hours ago
JSON representation
CHIP-8 emulator and assembler
- Host: GitHub
- URL: https://github.com/inanyan/chip8
- Owner: InAnYan
- License: other
- Created: 2022-08-06T09:33:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-29T18:23:44.000Z (9 months ago)
- Last Synced: 2024-01-29T20:59:47.169Z (9 months ago)
- Topics: assembler, chip8, emulator, gui
- Language: C++
- Homepage:
- Size: 789 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CHIP-8 emulator and assembler
## Description
chip8-emulator - CHIP-8 emulator written in C++, which uses "Dear ImGui" library.
chip8-assembler - CHIP-8 assembler and disassembler.
WRITTEN FOR EDUCATIONAL PURPOSES.
## Screenshot
![image](https://user-images.githubusercontent.com/13097618/169660654-0fae5418-5f58-425a-9de1-54cefcd3a37f.png)
## Emulator features
- GUI: display, memory, console and CPU status.
- Debugging options: pause, step, begin, breakpoint, dump.
- Emulation of CHIP-8 instruction set.
- Different display styles.
- Changing speed of emulator.
## Assembler features
- CHIP-8 instruction set by [Cowgod's Technical Reference](http://devernay.free.fr/hacks/chip8/C8TECH10.HTM).
- Disassembling and assembling.
- Marks support (with constant values).
- Different styles of comments.
- Provided three ROMs (`chip8calc.ch8`, `chip8start.ch8` and `dumbArcanoid.ch8`) with its source code which were compiled by this assembler.