[dev] lots of progress

Create main timer loop using an auxilliary thread.
This commit is contained in:
2024-03-02 13:00:57 +05:30
parent d1b0f03779
commit 2a4868c0c0
9 changed files with 192 additions and 26 deletions

View File

@@ -1,3 +1,19 @@
# CHIP-8 Emulator
Chip 8 emulator made with Rust.
Chip 8 emulator made with Rust.
### Status
- [ ] Memory
- [ ] Loading fonts
- [ ] Registers
- [ ] Stack
- [ ] Instruction Processing
- [ ] Display
- [ ] Keyboard
### More information on Chip-8
- [Guide to making a CHIP-8 emulator - Tobias V. Langhoff](https://tobiasvl.github.io/blog/write-a-chip-8-emulator/#specifications)
- [Awesome CHIP-8](https://chip-8.github.io/links/)