https://github.com/inanyan/chip8
CHIP-8 emulator and assembler
https://github.com/inanyan/chip8
assembler chip8 emulator gui
Last synced: about 2 months 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 (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-29T18:23:44.000Z (over 2 years ago)
- Last Synced: 2025-05-16T06:36:37.508Z (about 1 year ago)
- Topics: assembler, chip8, emulator, gui
- Language: C++
- Homepage:
- Size: 789 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- 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

## 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.