; Borrowed from Nigel Goodwin 2002 LIST p=16F628 ;tell assembler what chip we are using include "P16F628.inc" ;include the defaults for the chip __config 0x3D18 ;sets the configuration settings (oscillator type etc.) cblock 0x20 ;start of general purpose registers count1 ;used in delay routine counta ;used in delay routine countb ;used in delay routine endc ; Very short stuff here ; code for generating timed delays!! org 0x0000 ;org sets the origin, 0x0000 for the 16F628, ;this is where the program starts running movlw 0x07 movwf CMCON ;turn comparators off (make it like a 16F84) ; wanna generate some delays ?? call Del250 ; a 250 millisecond delay !! call Del20 ; a 20 millisecond delay ;modified Delay routine, direct calls for specified times ;or load W and call Delay for a custom time. Del0 retlw 0x00 ;delay 0mS - return immediately Del1 movlw d'1' ;delay 1mS goto Delay Del5 movlw d'5' ;delay 5mS goto Delay Del10 movlw d'10' ;delay 10mS goto Delay Del20 movlw d'20' ;delay 20mS goto Delay Del50 movlw d'50' ;delay 50mS goto Delay Del100 movlw d'100' ;delay 100mS goto Delay Del250 movlw d'250' ;delay 250 ms Delay movwf count1 d1 movlw 0xC7 ;delay 1mS movwf counta movlw 0x01 movwf countb Delay_0 decfsz counta, f goto $+2 decfsz countb, f goto Delay_0 decfsz count1 ,f goto d1 retlw 0x00 end