Quote Originally Posted by Darrel Taylor View Post
Why do you think they won't work in your app?
http://www.picbasic.co.uk/forum/show...ge=2#post96731

The link should take you to the top of page 2 in my thread "My project is starting"

They do work, but end up being the only thing to work. I am jumping to the interupt at every line of code. This is not because they don't work, but I am GUESSING just too short of a timer. As My PIC (16F1947) has automatic context saving for the interupt AND I don't need to save any other stuff, I was thinking just do it the built in way.

I would LOVE for you to help me to get DT_INT working for me in this app. I see the beauty in it and will use them when I can.

The @int return in the handler is not really at the end of the comment. In fact the comment doesn't even exist in my program(the part in Red)

BTW, I have no trouble with ASM, I am just determined to do things a little easier and learn PBP. But as I do, I find myself still thinking in terms of ASM.

I am generally a lazy typer, and would rather code this:
Code:
LATF = PORTA
then this:
Code:
MOVF    PORTA,0
MOVWF LATF