#include #include ISR(TIMER0_OVF_vect){ // d.th PORTB = 12; } void init( void ) { DDRB = 0xff; PORTB = 0xff; TCCR0 = ( 1 << CS01 ); TIMSK = ( 1 << TOIE0 ); } int main ( void ){ init(); sei(); while(1){ // d.th } }