From fcc40065a791486030dc7f3ae61301b7c18d8483 Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Fri, 11 Jun 2021 17:31:29 +0200 Subject: [PATCH] README: Add TODOs --- README.md | 10 ++++++---- src/processor.rs | 4 ++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d231987..05a99ad 100644 --- a/README.md +++ b/README.md @@ -5,14 +5,16 @@ Yet another chip8 emulator written in rust \o/ ## TODO -Expand on this README ++ Expand on this README ++ Add some documentation ++ Add delay for beeper ++ Fix input ## System Dependencies `sdl2` together with its dependencies are required to be installed on your hostmachine. -On arch-based distros you can use -`sudo pacman -Syu sdl2 sdl2_gfx sdl2_image sdl2_mixer sdl2_ttf` -to install them. +On Arch-based distros you can use these packages: +`sdl2 sdl2_gfx sdl2_image sdl2_mixer sdl2_ttf` ## Credits diff --git a/src/processor.rs b/src/processor.rs index b93734e..6188ce2 100644 --- a/src/processor.rs +++ b/src/processor.rs @@ -1,5 +1,3 @@ -// TODO add all comments - extern crate sdl2; use rand::Rng; @@ -71,8 +69,10 @@ impl Processor { } // play sound using sdl2 + // TODO // add delay + // TODO } }