README: Add TODOs

This commit is contained in:
Marco Thomas
2021-06-11 17:31:29 +02:00
parent a08dfb2f46
commit fcc40065a7
2 changed files with 8 additions and 6 deletions

View File

@@ -5,14 +5,16 @@ Yet another chip8 emulator written in rust \o/
## TODO ## TODO
Expand on this README + Expand on this README
+ Add some documentation
+ Add delay for beeper
+ Fix input
## System Dependencies ## System Dependencies
`sdl2` together with its dependencies are required to be installed on your hostmachine. `sdl2` together with its dependencies are required to be installed on your hostmachine.
On arch-based distros you can use On Arch-based distros you can use these packages:
`sudo pacman -Syu sdl2 sdl2_gfx sdl2_image sdl2_mixer sdl2_ttf` `sdl2 sdl2_gfx sdl2_image sdl2_mixer sdl2_ttf`
to install them.
## Credits ## Credits

View File

@@ -1,5 +1,3 @@
// TODO add all comments
extern crate sdl2; extern crate sdl2;
use rand::Rng; use rand::Rng;
@@ -71,8 +69,10 @@ impl Processor {
} }
// play sound using sdl2 // play sound using sdl2
// TODO
// add delay // add delay
// TODO
} }
} }