aboutsummaryrefslogtreecommitdiff
path: root/examples/test.csd
blob: a78fb8d16eaa07fc49b3ed7438eef3e5f4fdee61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<CsoundSynthesizer>
<CsOptions>
-odac
</CsOptions>
; ==============================================
<CsInstruments>

sr	=	48000
ksmps	=	1024
nchnls	=	2
0dbfs	=	1


instr 1	
	kfreq init 440
	kaxis[], kbuttons[] jstick 0
	printk2 kaxis[2]
	kfreq = kaxis[3]
	a1 oscil 1, kfreq
	outs a1, a1
endin

</CsInstruments>
; ==============================================
<CsScore>
i1 0 100


</CsScore>
</CsoundSynthesizer>