#define F_CPU 1000000L
#include <avr/io.h>
#include <util/delay.h>

int main(){
  DDRB = 0xFF;
  PORTB = 0x01;
  while(1){
    PORTB++;
    _delay_ms(100);
  }
}
