transcode/examples/loop.c
2011-07-13 00:42:27 +02:00

13 lines
138 B
C

#include <avr/io.h>
#include <stdint.h>
int main ( void ) {
uint8_t foo = 33;
while (foo) {
PORTD ^= foo;
foo--;
}
return 0;
}