I'm new to writing BASIC for PIC.
I'm using a 12F629.
How does one write the "include" statements to use this in BASIC.
I only find ASM statements.
I see "inlcue", "list", "files"
I'm lost here.

I'm using Microcode Studio compiler.
My program begins :

* Notes : Basic Program for Digital P.S. for 12F629 *
'* *
'************************************************* ***************
' Device data

device = pic12f629, intrc_osc, wdt_on, bod_on, cpd_off, pwrt_on, mclr_off, protect_off

Symbol Strike = pin0 'Assign Strike drive to GPIO 0
Symbol RUNNING = pin1 'Assign Runing (Lo) to GPIO 1
Symbol HI_FIL = pin2 'Assign Filament Hi drive to GPIO 2
SYMBOL MCLR = pin3 'Assign Master CLear to GPIO 3
SYMBOL START_LED = pin4 'Assign Start Led to GPIO 4
SYMBOL RUN_LED = pin5 'Assign Run Led to GPIO 5
Symbol Fresh = bit0 'Assign Fresh Start_Up Counter to Bit 0

LED_TEST: 'Test RUN and START LEDS
RUN_TEST: 'Assign name to run test cycle
FIRST_TEST 'Assign name to FIRST TEST cycle
WARM_UP: 'Assign name to Warm up cycle
STRIKE_IT: 'Asssign name to STRIKE cycle
FINISH_WARM_UP: 'Assign name to finish warm up cycle

B0 var byte


Thanks