Hello
Im having problems programing a Pic 18F458 chip using Pic Start Plus. I just bought the Pic Start Plus to use and I cant seem to get it running. I have been using a picQuik programmer for the last couple of years and have had no problems with it.

here is the complete example code I tried to use just to make sure the picstart was working

pause 1000
trisb = 0
portb = 1

I use microcode studios and PBP 2.46
When I open the Hex file in MPLAb 7.41 and program it says that it worked and verified. But chip does nothing.

When I program the hex code into the chip with my Picquick it works.

I thought maybe in MPLAB I was not getting the config bits to program but it appears when you hit program it programs everything to the pic.

If I put this Code in Microcode compile and then load hex file with MPlab it works.

Pause 1000
TrisB.1 = 0
PortB.1 = 1

Please Help
Is there an include file that I am suppose to be using in my microcode program.