Now im stuck. When i boot the programe up i get the time showing which ive set. I then start the timer and the tenth of seconds count down like i want them too! However it doesnt role over into the seconds
Write a chunk of code that does this...
Take a byte variable, assign a value of ZERO to it, subtract one from that value and display it. For example:
Code:
temp var byte
temp = 0
temp = temp - 1
lcdout $fe , 1 , DEC temp
What's the result?
Is it what you expect?