Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. ; which is more intuitive?
  2.  
  3. lda TimerControl ;if master timer control not set, decrement
  4. beq DecTimers ;all frame and interval timers
  5. dec TimerControl
  6. bne NoDecTimers
  7.  
  8. ; vs
  9.  
  10. if (lda TimerControl == zero ) || (dec TimerControl == zero)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement