chip8-book
chip8-test-suite
chip8-book | chip8-test-suite | |
---|---|---|
5 | 16 | |
203 | 419 | |
- | - | |
3.9 | 6.7 | |
over 1 year ago | 5 months ago | |
Rust | Roff | |
Creative Commons Zero v1.0 Universal | GNU General Public License v3.0 only |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
chip8-book
-
Could you suggest an open or a public domain platform that is suitable for publishing a book on emulation?
Not to discourage you, but there's already a CHIP-8 book in progress: https://github.com/aquova/chip8-book
-
feboy (DMG GB emulator) now has full audio support! Special thanks to /u/KingWallmo for working on it the last couple months. Suggestions on what feature to add next?
WASM support would be so cool. There are lots of guides online which could help you out. I saw a guide for the chip8 and it didn't even look too difficult, you can check it out here https://github.com/aquova/chip8-book
-
[Rust] Getting into low level programming. How and why does this pattern matching work?
Recently I've decided to learn low level programming with Rust. I asked for some projects to practice and got recommened to make a Chip8 emulator. That sounded fun so I searched a bit and found this guide that walks you step by step.
-
Show HN: How to compile C/C++ for WASM, pure Clang, no libs, no framework
I made some emulators in Rust as a learning project during the start of the pandemic, and ran into the exact same issue when I wanted to make a wasm version to run in a browser. Eventually, I was able to figure out how to do it, although I do use the 'wasm-pack' Cargo package to assist with it (I think you can get away without it if you're really motivated, you just need to set up the targets and other elements yourself). Basically you define some Rust API to expose whatever you need from your project, then that and the project get compiled into one .wasm binary and some (surprisingly readable) JavaScript "glue" gets generated which allows for easy inclusion into a web page. It works well for code in the std, but I've had issues with 3rd party packages.
It's focused on emulation development, but I wrote a document that describes the process I followed: https://github.com/aquova/chip8-book/blob/master/src/wasm.md
-
Advanced programming exercises/apps recommendations to code
I followed [this](https://github.com/aquova/chip8-book) book which uses Rust.
chip8-test-suite
- Chip-8 Test Suite
-
Show HN: Fortran Chip-8 Interpreter
This is my first emulator. It is still missing a few bells and whistles like the sound timer, but otherwise it passes the basic tests from Timendus (https://github.com/Timendus/chip8-test-suite). I've also been thinking about making a Fortran dialect suitable for CHIP-8 (https://fortran-lang.discourse.group/t/fortran-chip-8-interp...).
-
Beginner, intermediate, and advanced c programming projects
Here is a reddit threadfor documentation resources and apparently the r/EmuDev discord has even more. Personally i used wikipedia and youtube to understand what it was & what it should look like (i remember still not getting it at first) and then Cowgod's Chip-8 Technical Reference as main reference for implementing the Instructions and overall architecture (beware that some instructions are missing key details about flag updating and other stuff another source will need to be used). Then the Chip8-test-suite by Tim Franssen was a godsend for the debugging phase. (you can go to Octo and try out some Chip8 games first if you want) also download some game-roms for testing.
- CHIP-8 test suite v4.1 released
-
Chip 9 (impossible opcodes?)
Oh and with "test ROMs" I didn't mean "test with more ROMs", but use ROMs that are actually meant for testing 😉 See for example https://github.com/Timendus/chip8-test-suite
-
CHIP-8 Emulator in Golang and WebAssembly
The emulator still has issues but it is largely usable. It passes most of the tests in test ROMs that I have found, in particular the ones here. It also has a simple debugger that actually helped me find issues in my implementation.
-
Weird Horizontal Offset In My Chip-8 Emulator Display
thanks alot man! i'll now run the roms in chip8-test-suite...
- CHIP-8 test suite version 4.0 is out
- CHIP-8 test suite version 4.0 has just been released!
-
[Chip8] Screen gets wacky after splash screen
If you're at this point in the chip8 process, you may be able to run something like https://github.com/Timendus/chip8-test-suite to identify some common issues such as forgetting to set a flag or doing arithmetic operations slightly wrong. Maybe one of these common issues is the culprit.
What are some alternatives?
three-layer - :three: :cake: Architecture of the Haskell web applications
chip8-test-rom - ROM for testing chip8 emulator
wasm-fizzbuzz - WebAssembly from Scratch: From FizzBuzz to DooM.
Octo - A Chip8 IDE
Essentials-of-Compilation - A book about compiling Racket and Python to x86-64 assembly
DEBUG8 - CHIP-8 debugger
wefx - Basic WASM graphics package to draw to an HTML Canvas using C. In the style of the gfx library
chip8Archive - A repository of community-submitted Chip8 programs and their metadata
cib - clang running in browser (wasm)
jaxe - A fully-featured, cross platform XO-CHIP/S-CHIP/CHIP-8 emulator written in C and SDL.
riscv-rust - RISC-V processor emulator written in Rust+WASM
chip-8 - A CHIP-8 Emulator