-; There's enough in this lab to get your feet wet on the APU, but it doesn't
-; cover more advanced topics like sweeps, envelopes, samples, or composing
-; music.
-
+; Really, that's it. Just for this lab, the R button now controls the walk
+; animation, so the little man now runs only when you tell him to. To achieve
+; this, I simply inhibit the walk cycle animation unless the button has been
+; pressed. I sample constantly in the main loop and set a flag, which the
+; NMI vector checks before performing any animations.
+;
+; Believe it or not, at this point, we know enough to make bigger and better
+; applications. But this code here is horribly structured for doing so. So,
+; in my next lab, I'm going to clean this up, reorganize it, and try to make
+; a more workable "engine" on which to put advanced topics.
+;
+; Tiny note: I changed the ZEROPAGE to DATA here merely for correctness' sake.
+; The ZEROPAGE should always contain unitialized data, but some of the data
+; was initialized and this gives a linker warning.
+;
+; Thanks again for reading this far and taking this NES 6502 journey with me!