Hi
I am using PIC 16F690 and here is a fraction of my code. I have written this code so it stores my phone number and only enters once under this label "first:". Code does not seem to enter this label to being with - Is there somthing wrong with my code?
first:
read 230,a : read 231,b : read 232,c
if a<>"6" and b<>"8" and c<>"4"then
for c=0 to 255
write c,0
next c
write 230,"6"
write 231,"8"
write 232,"4"
pause 5000
for c=0 to 12
read c,ph[c]
next c

write 200,"+" : write 201,"4" : write 202,"4" : write 203,"7" : write 204,"8" : write 205,"3" : write 206,"2" : write 207,"2" : write 208,"2" : write 209,"5" : write 210,"1" : write 211,"7" : write 212,"4" ' this is all in one line
for c=200 to 212
read c,my[c-200]
next c
endif