CLM beginner's problem with definstrument

Juan Carlos Pampin juan@ccrma.Stanford.EDU
Sun, 30 Mar 97 18:01:09 -0800


Hi Larry,
you have to copy the instrument definition code into a text
file and save it as, for example, simp.ins. Then from ACL4.3
do:

:cl simp.ins

After the instrument is compiled and loaded you can call it
using the with-sound macro to generate an output sound file:

(with-sound (:output "~/Juan-snd/Tmp/test.snd")
     (simp 0.0 2.0 440.0 0.707))

This should make your sound card sing a nice A4 tone :)
I've tried this on our Linux/ACL4.3 and is working fine.
JUAN