-- -- name : e0001.jal -- author : Wouter van Ooijen -- date : 21-Sep-1998 -- purpose : jal example -- -- This program flashes a LED on pin A0 -- target configuration: 16f84 with 10 Mhz Xtal include 16f84_10 -- standard library include jlib -- configure pin A0 as output pin_a0_direction = output -- endless loop forever loop -- LED on pin_a0 = on -- wait a second delay_1s -- LED off pin_a0 = off -- wait 1 second again delay_1s -- repeat ad infinitum end loop