thanks for catching that, I also had found that dt14 doesnt work when compiling to a 18 chip... I copied all the code to a new page and started going thru it line by line, I found that error but it still didnt run. I fixed it by copying the lines

Code:
@   INT_ENABLE   INT0_INT     ; enable external (INT) interrupts
T1CON = $11                ; 01=.5s, 11=1s
@ INT_ENABLE  TMR1_INT     ; enable Timer 1 interrupts
strait from the webpages back to my program and it worked. I went back to my original file and pasted them and they were identical lines

Code:
@   INT_ENABLE   INT0_INT     ; enable external (INT) interrupts
T1CON = $11                ; 01=.5s, 11=1s
@ INT_ENABLE  TMR1_INT     ; enable Timer 1 interrupts
@   INT_ENABLE   INT0_INT     ; enable external (INT) interrupts
T1CON = $11                ; 01=.5s, 11=1s
@   INT_ENABLE   TMR1_INT     ; enable Timer 1 interrupts
All I had done was add some spaces to line stuff up a bit. and removed old lines, with the added spaces and it worked, So I was wondering if you have to have spaces just right, so I added the spaces back to the new code and it still worked??? so now I'm confused, then I went back to my first interupt program and modified that the same as these and it generated that error, thats when I noticed all the ones failing were useing DT_INTS-14.bas at the top. which worked for me as long as I only did either a timer or a INT, but not both, swapping over to the 18 and fixing that timer 0/1 error seems to have fixed it.

I was getting frustrated that I was overlooking my error of copy/pasting from multiple sources, darrels timer program used timer 1, and the others used timer0 so there was a mixup during copy/paste.

I have bot his sets of files for DT_INTS-14.bas and DT_INTS-18.bas If I assume the 18 is for 18F series chips whats 14 for, or am I not correct? he has 2 websites almost identical but I got confused on that. Right now the only chips I am using is the 18F4550, 12F683 & 675. I have others but am trying to stick mainly to these.

But its working now and Ive seen the errors, Frustration Over! at least for that lesson now today im going to try to learn to add a keypad to INT if I can.
Thanks for your help.