#include int main(void) { DDRB = 0xFF; PORTB = 0xAA; unsigned char z; for(z = 0; z < 200; z++) { PORTB = ~PORTB; } while(1); return 0; }