Archived
1
Fork 0
This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
chip8/README.md

14 lines
503 B
Markdown
Raw Normal View History

2020-04-29 14:55:53 -04:00
# chip8
2020-05-30 05:39:38 -04:00
A chip8 emulator that I implemented in C++. It only implements the SCHIP instruction set, and can play many modern roms found online. There's a basic memory viewer and debugger available as well.
2020-04-29 14:55:53 -04:00
2020-05-30 05:39:38 -04:00
![example result](https://raw.githubusercontent.com/redstrate/chip8/master/misc/output.png)
This emulator also comes with a basic compiler that takes a C-style language as input and can spit out valid CHIP-8 code:
2020-04-29 14:55:53 -04:00
```
var count = 3;
label(main);
count += 3;
draw_char(0, 5, count)
jump(main);
```