I'm a newbie. I can get this code to light up an led but it turns on for a fraction of a second but not stay on. Why will the LED not stay on? Seems like it blowing right past the while loop. I'm using an ATTiny85 on a STK500 board using AVRStudio 4.19.
#includeint main(void) { DDRB = 0b00000001; PORTB = 0b00000001; while(1) { } }