;********************************************************************* ; * ; PIC16C5X Tutorial 1: Counter Smoke Test * ; * ;********************************************************************* ;* TARGET PIC16C5X ;********************************************************************* ; Exercises the PIC16C5XX instruction set for the PIC16C54 ;********************************************************************* ;* @version 0.1, 25 September 2001 ;* @author James Caska ;********************************************************************* ;* ;* Runs on Processors without change ;* ;* PIC16c54 ;* PIC16c55 ;* PIC16c56 ;* PIC16c57 ;* ;********************************************************************* #include list p=16C54 ORG .0 ;========================================== ;Autogenerated configuration code PIC16C5X ;Config Wiz V0.1, www.virtualbreadboard.com ;========================================== ;======Begin PORT Configuration ;======PORT B MOVLW .0 ;PORTB Configuration Bits TRIS PORTB MAIN INCF PORTB,F GOTO MAIN END