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]
/
examples
/
gomidi.ck
blob
74bcb751e1c634fac41412ad6616a476260227cb
1
// infinite time-loop
2
while( 50::ms => now )
3
while( midiin => int i ) // print out midi message
4
chout => "type: " => (i>>16)&0xff
5
=> " data1: " => ( (i>>8)&0xff )
6
=> " data2: " => ( i&0xff )
7
=> endl;