Hi -

I am trying to program PIC16F877A(16Mhz) bootloader. The language in which I have written the code is Basic, and the compiler is Microcode studio.
The program gets compiled correctly producing a hex file. Now when I download the hex fie in the controller the controller doesn't respond to the code.

The code is :

'************************************************* ***************
'* Name : UNTITLED.BAS *
'* Author : [select VIEW...EDITOR OPTIONS] *
'* Notice : Copyright (c) 2010 [select VIEW...EDITOR OPTIONS] *
'* : All Rights Reserved *
'* Date : 11/23/2010 *
'* Version : 1.0 *
'* Notes : *
'* : *
'************************************************* ***************

@ device PIC16F877A,HS_OSC
@ device PIC16F877A,WDT_OFF
@ device PIC16F877A,PWRT_OFF
@ device PIC16F877A,DEBUG_OFF
@ device PIC16F877A,CPD_OFF
@ device PIC16F877A,PROTECT_OFF

loop: high 1
pause 20
low 1
pause 20
goto loop

end


Is this the problem with the configuration bits or it is something else(compiler). If you know some other Basic compiler, please send me the link so that I can
download it.