Guest User

Untitled

a guest
Aug 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .macro delayUs
  2.    push_registers
  3.  
  4.    ldi temp, LOW(@0)
  5.    ldi temp2, HIGH(@0)
  6.  
  7.    delay:
  8.       subi temp,1
  9.       sbci temp2,0
  10.       nop
  11.       nop
  12.       nop
  13.       brcc delay
  14.    
  15.    pop_registers
  16. .endmacro
Add Comment
Please, Sign In to add comment