;...... RESET: cli ; Interrupts sperren ldi temp, low(ramend); Stackpointer setzen out spl, temp ldi temp, high(ramend) out sph, temp ldi yl, low(0x0060) ; <<8 Start SRAM-Bereich low(0x0060) ldi yh, high(0x0060); &255 Start SRAM-Bereich high(0x0000) ldi temp, 0x00 init10x: ; SRAM mit Nullen beschreiben st y+, temp ; Speicherzellen loeschen cpi yl, low(ramend+1); RAM-Ende (low) erreicht? brne init10x ; nein => Schleife cpi yh, high(ramend+1); RAM-Ende (high) erreicht? brne init10x ; nein => Schleife sei ;....