Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. //===========================================
  2. DrawDigit:
  3. //
  4. // Input: A - Value 0-9 to be drawn
  5. // Y - X location on the screen
  6. // Return: none
  7. // Modifies: A, X, Y
  8. //===========================================
  9. tax
  10. lda MultiplyBy3,x
  11. sta Store
  12. ldx Store
  13.  
  14. lda Digits,x
  15. jsr DrawDigitLine
  16. inc Store
  17. ldx Store
  18. lda Digits,x
  19.  
  20. iny
  21. jsr DrawDigitLine
  22. inc Store
  23. ldx Store
  24. lda Digits,x
  25.  
  26. iny
  27. jsr DrawDigitLine
  28.  
  29. rts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement