Guest User

Untitled

a guest
Jul 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. ORG 8000H
  2. SETB P1.0
  3. SETB P3.2
  4.  
  5. LOOP: JNB P1.0, LED0
  6. JB P1.1, LED1
  7. JMP LOOP
  8.  
  9. LED0: SETB P3.2
  10. JMP LOOP
  11.  
  12. LED1: CLR P3.2
  13. JMP LOOP
Add Comment
Please, Sign In to add comment