Sorry, I can't find the link to edit my post so will add more info here:
I had installed PBP 2.60 and made some tests using LCD_Anypin
Then I tried to add the 2.60C patch but could not recognize that PBP was installed indicating something about pbppic14.lib so I figured it was because this file was modified for LCD_Anypin.

The version is not indicated on my PBP CDs but I have a previous version and an upgrade to 2.60 so I re-installed both and then tried again to add the patch and got a message about a file (don't remember which one) but I deleted it and then re-applied the patch successfully.

A number of my previous codes was working until I applied the 2.60C patch

Now my previous code that was ok can no longer compile.

Getting Error [118] ...ASM 73 Overwriting previous address content (2007)

Trying to compile this code:
Code:
@ __config _INTOSC_OSC_NOCLKOUT & _WDT_OFF & _MCLRE_ON & _LVP_OFF & _CP_OFF
clear
DEFINE OSC 8
TRISB = 0
TRISA = 0           
CMCON = 7           
OPTION_REG = 0
INTCON = 0

LCD_DB4   VAR PORTB.0
LCD_DB5   VAR PORTB.1
LCD_DB6   VAR PORTB.2
LCD_DB7   VAR PORTB.3
LCD_RS    VAR PORTA.4
LCD_E     VAR PORTA.3
LCD_Lines     CON 2    ' # of Lines on LCD,  1 or 2 (Note: use 2 for 4 lines)
LCD_DATAUS    CON 50   ' Data delay time in us 
LCD_COMMANDUS CON 2000 ' Command delay time in us 

INCLUDE "LCD_AnyPin.pbp"  ; *** Include MUST be AFTER LCD Pin assignments ****
PAUSE 500 : LCDOUT $FE,1 : PAUSE 250



LCDOUT $FE,$80,"text line 2"
LCDOUT $FE,$C0,"text line 2"


END