; **************************************************************
; * Das langweiligste Programm der Welt: der unendliche Loop   *
; * (C)2005 by info@avr-asm-tutorial.net                       *
; **************************************************************
;
.NOLIST
.INCLUDE "tn13def.inc"
.LIST
;
; Schaltbild:
;                   ATMEL ATtiny13
;                     ___   ____
;            ___    1/   |_|    |8
;+5 Volt O--|___|----|Res    Vcc|----O + 5 Volt
;                    |          |
;                    |PB3    PB2|
;                    |          |
;                    |PB4    PB1|
;                   4|          |
;               O----|Gnd    PB0|
;                    |__________|
;
;
loop:
	rjmp loop
;
; End of source code
