(Oops, my info was slightly wrong. FOR Y=15 TO 0 STEP 1 doesn't loop forever, it actually skips the loop entirely. It ends when Y is greater than or equal to 0, and 15 is greater than 0 to begin with, which is why your code did nothing before.)