-- DN003.jal : blink a led on bus_a_pin_0 at 1 Hz -- hardware: db016 + LED on bus_a_pin_0 include DB016_18F252_PLL_40 include jdelay bus_a_digital bus_a_pin_0_direction = output forever loop bus_a_pin_0 = true delay_500ms bus_a_pin_0 = false delay_500ms end loop