; Name: led1_on.asm ; Description: Switch on LED1 on the Pollin Atmel Evaluationboard ; (c) by Thomas Hoehn, October 2007 .set ddrd = 0x11 .set portd = 0x12 .cseg rjmp start .org 0x13 start: sbi ddrd,5 cbi portd,5 sbi portd,5 sleep