From 4b6b72b6f6b0989ba121aab3c0121ecb7738d1d9 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 29 Apr 2020 14:55:53 -0400 Subject: [PATCH] Create README.md --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..e0a5ab4 --- /dev/null +++ b/README.md @@ -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.