Can someone help me get started. I have been trying to blink a LED using a 16F88 all morning without any success. What is wrong with my code?
Also is there ea way to define in code the chip being used so I dont have to select it each time from the drop-down? Thanks
@ DEVICE INTRC_OSC_NOCLKOUT, MCLR_OFF, PROTECT_OFF, WDT_OFF
LOW PORTB.1
LOOP:
Toggle PORTB.1
Pause 1000
GoTo LOOP