The 16F628.inc file for MPASMX doesn't have an EQU for TMR1.
The 16F628.inc file for MPASM in MPLAB 8 does have TMR1.

You can add this to your program for a workaround ...

Code:
ASM
    ifndef TMR1
TMR1 = TMR1L
    endif
ENDASM