'**************************************************************** '* Name : Blink * '* Author : [ John Iovine] * '* Notice : Copyright (c) 2013 [John Iovine] * '* : All Rights Reserved * '* Date : 10/26/2013 * '* Version : 1.0 * '* Notes : * '* : * '**************************************************************** #CONFIG __config _CONFIG1,_INTRC_IO & _WDT_OFF & _PWRTE_ON & _MCLR_OFF & _LVP_OFF & _CP_OFF #ENDCONFIG osccon = %01110100 'Set-up internal oscillator at 8 Mhz start: 'Start of routine High PortB.1 'Turn on LED Pause 500 'Wait 1/2 second Low PortB.1 'Turn off LED Pause 500 'Wait 1/2 second Goto start 'Goto Start and repeat