Building a CHIP-8 emulator with Rust (Part 1)
Published in
5 min readNov 22, 2022
--
Writing an emulator has been on my developer “TODO list” for quite some time. Ever since playing an NES emulator for the first time, I’ve always been curious as to how they work.
Check out the complete project: https://github.com/sean3z/chip8-emulator-rust
Thankfully, there’s a ton of documentation these days that outline exactly how Emulators work. So I’ve…