using MPLAB 7.30 (MPASM 5.01)
PICLF8722
PICF8722.inc in picbasic folder has the config bits commented out

when i try to use the old method to declare configuration bits (code below) i get the following:
__CONFIG has been deprecated for PIC18 devices. Use directive CONFIG.

(CODE: OLD METHOD)
asm
__CONFIG _CONFIG1H, _OSC_HS_1H
endasm


When i try the new method (shown below) i get about 500+ errors messages stating errors such as:
-Destination address must be word aligned
-Address exceeds maximum range for this processor.
-Address label duplicated or different in second pass (_MAIN2)
-Address exceeds maximum range for this processor.

(Code: NEW METHOD)
asm
CONFIG OSC = HS
endasm

it seems as if no matter which method i use i get errors! i've read the FAQ on fuses several times and tried just about everything there. http://www.picbasic.co.uk/forum/showthread.php?t=543