mirror of
https://github.com/vbatts/bitorchestra.git
synced 2025-07-08 19:48:34 +00:00
10 lines
135 B
C
10 lines
135 B
C
#include "audio.h"
|
|
|
|
int main() {
|
|
init();
|
|
int t;
|
|
for (t = 0;;t++) {
|
|
p((t >> 6 | t | t >> (t >> 16)) * 10 + ((t >> 11) & 7));
|
|
}
|
|
}
|
|
|