diff --git a/img/TimeBomb.png b/img/TimeBomb.png
new file mode 100644
index 0000000..d7d648f
Binary files /dev/null and b/img/TimeBomb.png differ
diff --git a/img/thumbnail-39.jpg b/img/thumbnail-39.jpg
new file mode 100644
index 0000000..0f46626
Binary files /dev/null and b/img/thumbnail-39.jpg differ
diff --git a/lesson-08/main.c b/lesson-08/main.c
index 2c1c2c6..16d384b 100644
--- a/lesson-08/main.c
+++ b/lesson-08/main.c
@@ -7,8 +7,7 @@
void delay(int iter);
void delay(int iter) {
- int volatile counter;
- counter = 0;
+ int volatile counter = 0;
while (counter < iter) { // delay loop
++counter;
}
diff --git a/lesson-08/project.ewp b/lesson-08/project.ewp
index 7194d95..6870bb8 100644
--- a/lesson-08/project.ewp
+++ b/lesson-08/project.ewp
@@ -716,7 +716,7 @@