Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.