Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. @code __init{
  2.  
  3. @def button "r4"
  4. @def color "r5"
  5. @def cnt "r6"
  6. @def temp "r7"
  7.  
  8. ;Pixelanzahl erzeugen
  9. LDUI @temp, #75
  10. SHLI @temp, @temp, #12 ;Shifte 75 12mal nach links = 307.200
  11. ADD @cnt, @temp
  12.  
  13.  
  14. loop:
  15. OUT @cnt, #160
  16. IN @color, #65
  17. OUT @color, #161
  18. IN @button, #66
  19. IN r3, #129
  20. MUL r2, r2, r0
  21. MUL r3, r3, r0
  22.  
  23.  
  24. DEC @cnt
  25. BNEZ @cnt, #loop
  26.  
  27.  
  28.  
  29. @}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement