1
0
Fork 0
mirror of https://github.com/vbatts/bitorchestra.git synced 2025-07-08 19:48:34 +00:00
bitorchestra/f1.c
2012-09-17 09:19:05 -04:00

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));
}
}