having problem with the toggle command; (using PIC18f13k22)
this works;
Code:
LOOP1:                    
    PORTA.1 = 1     
    pause 100
    PORTA.1 = 0
    pause 100
    goto LOOP1
now, using the toggle command, this does not work;
Code:
LOOP1:                    
    PORTA.1 = 1     
    pause 100
    TOGGLE PORTA.1
    pause 100
    goto LOOP1
what am I missing?