Add screenshot to README
This commit is contained in:
parent
2c02666657
commit
5ab8351baa
2 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,9 @@
|
|||
# chip8
|
||||
A chip8 emulator that I implemented in C++. It only implements the SCHIP instruction set, and can play many modern roms found online.
|
||||
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.
|
||||
|
||||
This emulator also comes with a WIP compiler that takes a C-style language as input and can spit out valid CHIP-8 code:
|
||||

|
||||
|
||||
This emulator also comes with a basic compiler that takes a C-style language as input and can spit out valid CHIP-8 code:
|
||||
```
|
||||
var count = 3;
|
||||
label(main);
|
||||
|
@ -9,5 +11,3 @@ count += 3;
|
|||
draw_char(0, 5, count)
|
||||
jump(main);
|
||||
```
|
||||
|
||||
There's also a basic memory viewer and "debugger" included as well.
|
||||
|
|
BIN
misc/output.png
Normal file
BIN
misc/output.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
Reference in a new issue