Create README.md
This commit is contained in:
parent
90a2471d07
commit
4b6b72b6f6
1 changed files with 13 additions and 0 deletions
13
README.md
Normal file
13
README.md
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# chip8
|
||||||
|
A chip8 emulator that I implemented in C++. It only implements the SCHIP instruction set, and can play many modern roms found online.
|
||||||
|
|
||||||
|
This emulator also comes with a WIP compiler that takes a C-style language as input and can spit out valid CHIP-8 code:
|
||||||
|
```
|
||||||
|
var count = 3;
|
||||||
|
label(main);
|
||||||
|
count += 3;
|
||||||
|
draw_char(0, 5, count)
|
||||||
|
jump(main);
|
||||||
|
```
|
||||||
|
|
||||||
|
There's also a basic memory viewer and "debugger" included as well.
|
Reference in a new issue