I'm playing with the Atari 8-bit family of computers so I can get back into the realm of programming.
What I have below is a series of PRINT loops associated with 3 SOUND tones. Basically I have two descending tones, and one that I'm just fucking with (50). One of the PRINT commands counts the number of tones being played, whilst the second counts how many times the program has looped. Line 100 is unused.
The SOUND parameters are in order by tone, pitch, distortion, volume.
Can someone explain to me how to get a rising pitch in this bullshit? Any expression so far that I put in the second parameter in SOUND lowers in pitch iteratively. I've tried different variables in an additional STEP command for lines 10 and 20, but to no avail.
What I have below is a series of PRINT loops associated with 3 SOUND tones. Basically I have two descending tones, and one that I'm just fucking with (50). One of the PRINT commands counts the number of tones being played, whilst the second counts how many times the program has looped. Line 100 is unused.
10 FOR A=0 TO 255 20 FOR B=0 TO 64 30 PRINT B 40 PRINT A 50 SOUND 1,A/2^4,10,10 60 SOUND 3,B,14,15 70 SOUND 0,B,12,10 80 NEXT B 90 NEXT A 100 SOUND 0,0,0,0
The SOUND parameters are in order by tone, pitch, distortion, volume.
Can someone explain to me how to get a rising pitch in this bullshit? Any expression so far that I put in the second parameter in SOUND lowers in pitch iteratively. I've tried different variables in an additional STEP command for lines 10 and 20, but to no avail.
This post has been edited by Lobotomy: 29 March 2014 - 09:19 PM


00