transcode/examples/loop.c

14 lines
138 B
C
Raw Permalink Normal View History

2011-07-09 22:19:17 +02:00
#include <avr/io.h>
#include <stdint.h>
int main ( void ) {
uint8_t foo = 33;
while (foo) {
PORTD ^= foo;
foo--;
}
2011-07-13 00:42:27 +02:00
return 0;
2011-07-09 22:19:17 +02:00
}