Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabryon99/chip8
Chip8 emulator using Modern C++ and SDL2.
https://github.com/gabryon99/chip8
cpp emulator sdl2
Last synced: about 4 hours ago
JSON representation
Chip8 emulator using Modern C++ and SDL2.
- Host: GitHub
- URL: https://github.com/gabryon99/chip8
- Owner: gabryon99
- License: mit
- Created: 2023-09-16T09:26:17.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-18T14:26:14.000Z (about 1 year ago)
- Last Synced: 2023-09-18T17:21:26.890Z (about 1 year ago)
- Topics: cpp, emulator, sdl2
- Language: C++
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Chip8(++)
This is an emulator written in modern **C++17**. It is somewhat buggy but you can load roms
and draw sprites on the screen, and play games!### Test Roms
- [x] IBM Logo
- [x] BPM Viewer
- [x] Chip8 Logo
- [x] KeyPad Test
- [x] Zero Demo### Next Features
- [ ] Game Tuner: since CHIP8 games do not have any header file, maybe we can use a _checksum_.
- [ ] Creating a debugger with breakpoints.
- [ ] Showing CPU status in a separate window.
- [x] Implementing missing arithmetic instructions with carry.
- [ ] Parsing CLI options (scale size, colors, and so on...)
- [x] Implement timers
- [x] Implement sound
- [ ] Separate namespace in different files.
- [ ] Creating a CMake file.
- [ ] Run on other platforms (e.g., Linux).
- [ ] Experiment other emulation techniques for the main fetch-decode-execute loop: threaded-code, just-in-time compilation...