Advertisement
tourniquet

Button

Dec 14th, 2013
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. .device ATtiny2313A
  2. .nolist
  3. .include โ€tn2313adef.incโ€
  4. .list
  5.  
  6. ; =====
  7.  
  8. .def temp = r16
  9.  
  10. ; =====
  11.  
  12. rjmp Init
  13.  
  14. ; =====
  15.  
  16. Init:
  17. ser temp
  18. out DDRB, temp
  19. ldi temp, 0b11111110
  20. out DDRD, temp
  21.  
  22. clr temp
  23. out PortB, temp
  24. ldi temp, 0b00000001
  25. out PortD, temp
  26.  
  27. ; =====
  28. Start:
  29. in temp, PinD
  30. out PortB, temp
  31. rjmp Start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement