I'm trying to just compile the code below:

Code:
' PIC18F2550 
 DEFINE OSC 8 
 ADCON1 = %00001111
 CMCON = 7
 OSCCON = %01110000
 TRISB = %00000000
 START

 LATB.2 = 1
 PAUSE 250
 LATB.2 = 0
 PAUSE 250
 GOTO START
It gives Block overflow for #ENDCONFIG.

MCU is 18F2550

What might be the reason?