+Ripdubski #1 Posted August 22, 2016 I want to write a simple routine in BASIC to create a pop noise. Like the sound made by pressing your lips together then opening your mouth real fast. I don't have the sound skills with the Atari BASIC to even know where to start. In other words, I don't know what sound statements make what noises or how I might create such a noise combining things together. Can anyone suggest a small routine or point me in the right direction. Thx in advance! Wade Quote Share this post Link to post Share on other sites
miker #2 Posted August 22, 2016 (edited) Maybe not exaclty but... Edit - a bit more accurate: Sorry for screenshots - working on atr with some trash inside. Edited August 22, 2016 by miker Quote Share this post Link to post Share on other sites
+Ripdubski #3 Posted August 24, 2016 Thanks, that is close. I guess I need a re-education in Atari sound. Quote Share this post Link to post Share on other sites
fujidude #4 Posted August 24, 2016 Thanks, that is close. I guess I need a re-education in Atari sound. If you haven't already, re-familiarize yourself with the Atari BASIC SOUND command. Then have some fun reliving your old excitement with the platform and experiment. Have fun with your Atari! Quote Share this post Link to post Share on other sites
Rybags #5 Posted August 25, 2016 I'd just go: 10 FOR F=100 TO 20 STEP -15 20 SOUND 0,F,10,8 90 NEXT F A triangle wave would probably work better though a dynamic sound using it would need to be done with help from an assembly routine since multiple registers have to be stored in very quick sequence. Quote Share this post Link to post Share on other sites