Guest User

Untitled

a guest
Feb 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1.  
  2. : square 2 / / 2 mod 128 * ;
  3. : sawtooth swap over mod swap 127 swap / * ;
  4.  
  5. :var note
  6. :var voice
  7. : sample voice @ exec ;
  8.  
  9. : rst drop 0 ;
  10. : C-1 245 4 / sample ; # 32.70
  11. : C$1 231 4 / sample ; # 34.65
  12. : D-1 218 4 / sample ; # 36.71
  13. : D$1 206 4 / sample ; # 38.89
  14. : E-1 194 4 / sample ;
  15. : F-1 183 4 / sample ;
  16. : F$1 173 4 / sample ; # 46.25
  17. : G-1 163 4 / sample ;
  18. : G$1 154 4 / sample ; # 51.91
  19. : A-1 145 4 / sample ;
  20. : A$1 137 4 / sample ; # 58.27
  21. : B-1 130 4 / sample ; # 61.74
  22. : C-2 122 4 / sample ; # 65.41
  23. : C$2 231 2 / sample ;
  24. : D-2 218 2 / sample ;
  25. : D$2 206 2 / sample ;
  26. : E-2 194 2 / sample ;
  27. : F-2 183 2 / sample ;
  28. : F$2 173 2 / sample ;
  29. : G-2 163 2 / sample ;
  30. : G$2 154 2 / sample ;
  31. : A-2 145 2 / sample ;
  32. : A$2 137 2 / sample ;
  33. : B-2 130 2 / sample ;
  34. : C-3 122 2 / sample ;
  35.  
  36. :data moon
  37. F$2 C$2 F$2 G$2 C$2 F$2 G$2 C$2
  38. B-2 C$2 B-2 A$2 C$2 A$2 G$2 F$2
  39. :data moon2
  40. G$2 F$2 F$1 C$2 F$2 G$2 C$2 F$2
  41. G$2 C$2 B-2 C$2 B-2 A$2 C$2 A$2
  42. : main
  43. 0 note !
  44. loop
  45. 2000 for
  46. ' square voice ! i note @ moon + @ exec
  47. ' sawtooth voice ! i note @ moon2 + @ exec
  48. or
  49. AU !
  50. next
  51. note @ 1 + 16 mod note !
  52. again
  53. ;
Add Comment
Please, Sign In to add comment