Hi everyone,
Im currently programming a pic using assembly. Now for some reason the BCF instruction only seems to execute after a specific delay. For example:
This does not appear to work at all! If however I write to the port directly (such as movlw 0x01 and then mowf porta) it works fine. What is going on???
Im currently programming a pic using assembly. Now for some reason the BCF instruction only seems to execute after a specific delay. For example:
Rich (BB code):
LOOP BSF PORTA,0
BCF PORTA,0
GOTO LOOP