README: Add TODOs
This commit is contained in:
10
README.md
10
README.md
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user