Home » Personal collection » Commodore tapes » Commodore_16 » drawer_br_tape03b_c16_basic2.wav » sound demo
sound demo
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » Personal collection » Commodore tapes » Commodore_16 » drawer_br_tape03b_c16_basic2.wav |
Filename: | sound demo |
Read OK: | ✔ |
File size: | 0697 bytes |
Load address: | 1001 |
Exec address: | 0000 |
Duplicates
There are 2 duplicate copies of this file in the archive:
- Personal collection » Commodore disks » disk52a2_c16_progs.d64 » sound demo
- Personal collection » Commodore tapes » Commodore_16 » drawer_br_tape03a_c16_basic2.wav » sound demo
- Personal collection » Commodore tapes » Commodore_16 » drawer_br_tape03b_c16_basic2.wav » sound demo
File contents
10 REM SOUND DEMO PLUS/4 20 REM COPYRIGHT (C) ANDREW COLIN 1984 30 DATA169,262,345,383,453,516,571 40 DATA596,643,685,704,739,770,798 50 DATA810,834,854,864,881,897,911,917 60 DIM N(22) 70 FORJ=1TO22:READ N(J):NEXTJ 100 PRINT"<clr>" 110 PRINT" C-264 SOUND DEMONSTRATION" 120 PRINT" ===== ===== =============" 130 PRINT 140 PRINT" 1. TELEPHONE RINGING 150 PRINT" 2. POLICE CAR 160 PRINT" 3. BIRDS SINGING 170 PRINT" 4. PIPS 180 PRINT" 5. LOW MOAN 190 PRINT" 6. RISING SCALE 200 PRINT" 7. FALLING SCALE 210 PRINT" 8. ARRIVAL OF THE ALIENS 220 PRINT" 9. DEPARTURE OF THE ALIENS 230 PRINT 240 PRINT" CHOOSE A NUMBER (1 - 9) "; 250 GETKEY A$ 260 IF A$ < "0" OR A$ >"9" THEN 250 270 PRINT A$ 280 ON VAL(A$) GOSUB 1000,2000,3000,4000,5000,6000,7000,8000,9000 290 GOTO100 1000 REM TELEPONE RINGING 1010 VOL7 1030 FOR Q=1TO5 1040 FORK=1TO2 1050 FORM=1TO12 1060 SOUND1,770,1 1070 SOUND1,1022,1 1080 NEXT 1090 FORZ=1TO150:NEXT 1100 NEXTK 1110 FORP=1TO1000:NEXT 1120 NEXTQ 1130 RETURN 2000 REM POLICE CAR 2010 VOL7 2015 FORQ=1TO10 2020 FORX=900TO750 STEP-8 2030 SOUND1,X,1 2040 NEXT X 2050 FORX=750 TO 900 STEP8 2060 SOUND1,X,1 2070 NEXTX 2080 NEXTQ 2090 RETURN 3000 REM BIRDS 3010 VOL 7 3020 FOR N=1TO50 3030 Q=970-INT(30*RND(0)) 3040 R=Q-20-INT(20*RND(0)) 3050 FORX=QTORSTEP-3 3060 SOUND1,X,1 3070 NEXTX 3080 FORJ=1TO20:NEXT 3090 NEXT N 3100 RETURN 4000 REM PIPS 4010 FORN=1 TO 5 4020 SOUND 1,900,8 4030 FORJ=1TO700:NEXT J 4040 NEXT N 4050 SOUND 1,900,50 4060 RETURN 5000 REM LOW MOAN 5010 FOR X=200 TO 0 STEP-2 5020 SOUND1,X,1 5030 NEXT X 5040 RETURN 6000 REM RISING SCALE 6010 FOR X=1 TO 21 6020 SOUND 1,N(X),10 6030 NEXT X 6040 SOUND 1,N(22),30 6050 RETURN 7000 REM FALLING SCALE 7010 VOL 7 7020 FOR X=22 TO 2 STEP -1 7030 SOUND 1,N(X),12 7040 NEXTX 7050 SOUND 1,N(1),30 7060 RETURN 8000 REM ARRIVIAL OF THE ALIENS 8010 VOL 7 8020 FOR X=1000 TO 200 STEP-50 8030 FOR Y = X TO X-100 STEP-10 8040 SOUND 1,Y,1 8050 NEXT Y 8060 FOR J=1TO20:NEXT J 8070 NEXT X 8080 RETURN 9000 REM DEPARTURE OF THE ALIENS 9010 VOL 7 9020 SOUND 3,950,700 9030 FORJ=1 TO 1000: NEXT 9040 FOR X=600 TO 1000 STEP 8 9050 SOUND 1,X,5 9060 FOR J=1TO 10+0.4*(1000-X):NEXTJ 9070 NEXTX 9080 RETURN
� SOUND DEMO PLUS/4 ? � COPYRIGHT (C) ANDREW COLIN 1984 ` �169,262,345,383,453,516,571 �( �596,643,685,704,739,770,798 �2 �810,834,854,864,881,897,911,917 �<