Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. loop:
  2. lda (src),y
  3. asl
  4. rol temp
  5. asl
  6. rol temp
  7. ora (dest,x)
  8. sta (dest,x)
  9. inc dest
  10. lda temp
  11. and #3
  12. ora (dest,x)
  13. sta (dest,x)
  14. clc
  15. lda dest
  16. adc #rowSpacing
  17. sta dest
  18. dey
  19. bmi done
  20. bcc loop
  21. inc dest+1
  22. bcs loop
  23. done:
  24.  
  25. loop:
  26. lda (src),y
  27. sta (dest,x)
  28. dey
  29. bmi done
  30. lda dest
  31. adc #rowSpacing
  32. sta dest
  33. bcc loop
  34. inc dest+1
  35. bcs loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement