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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-25T20:15:08.000Z (almost 2 years ago)
- Last Synced: 2025-02-23T03:11:22.443Z (over 1 year 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

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