The 44 PIN Demo board users guide clearly (in font size ~2 print on Page 35) says that the LED's are attached to PORTD.

I changed the .BAS code per below and the LED blinks!!!

---------------start snip---------------
mainloop:
High PORTD.0 ' Turn on LED connected to PORTD.0
Pause 500 ' Delay for .5 seconds

Low PORTD.0 ' Turn off LED connected to PORTD.0
Pause 500 ' Delay for .5 seconds

Goto mainloop ' Go back to loop and blink LED forever
End
--------end snip----------------

Hurray for our team!!

Ken