Thanks so much for the help, that is exactly what I needed to get it working! After spending some time reading about the history of the carriage return line feed, I loaded the PIC file into a freeware hex editor that could count the number of 0A=ASCII 13=CR and 0D=ASCII 10=LF combinations.
I then compared that count to the number of lines my text editor thought there were in the program and sure enough they didn't match.
Using "EditPad Lite" text editor, I converted all the lines returns to the CRLF format, and was able to compile the program just fine without the error code 14.
Thanks Again! |