repo.or.cz
/
chuck-blob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[chuck-blob.git]
/
exile
/
v1
/
examples
/
demo4.ck
blob
2cd5a877f3752733e14cb4749ab6e39205f54628
1
// sweep midi keyboards
2
// some hand - assembled midi instructions here
3
// -gewang
4
5
0xb04444 => int prog;
6
0x90007f => int msg;
7
0x80007f => int off;
8
9
prog => midiout;
10
while( msg < 0x907f7f )
11
{
12
msg => midiout;
13
msg + 0x000100 => msg;
14
off + 0x000100 => off;
15
40::ms => now;
16
off => midiout;
17
}
18