Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hruivo/zhip8
Chip-8 Emulator in Zig and SDL2.
https://github.com/hruivo/zhip8
chip8 emulation low-level-programming sdl2 zig
Last synced: 4 months ago
JSON representation
Chip-8 Emulator in Zig and SDL2.
- Host: GitHub
- URL: https://github.com/hruivo/zhip8
- Owner: HRuivo
- License: mit
- Created: 2024-07-30T22:10:13.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-25T20:15:08.000Z (6 months ago)
- Last Synced: 2024-10-02T07:04:18.163Z (4 months ago)
- Topics: chip8, emulation, low-level-programming, sdl2, zig
- Language: Zig
- Homepage:
- Size: 49.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zhip8
Chip-8 Emulator in Zig and SDL2.## Status
![CHIP-8 Operations](https://github.com/HRuivo/zhip8/actions/workflows/main.yml/badge.svg)## Installation
### From Source
Building Zhip8 from source is done with zig build.
```bash
git clone https://github.com/HRuivo/zhip8
cd zhip8
zig build
```### Running
Run with a ROM to be loading into memory.
```bash
zig build run --
zig build run -- TETRIS
```
### TODO- Error handling
- Stack Overflow handling
- Graphics Abstraction Layer
- Input handling
- Testing