.include "m48def.inc" .def Temp = r16 .def UART = r17 .equ CLOCK = 14745600 .equ BAUD = 115200 .equ UBRRVAL = CLOCK/(BAUD*16)-1 .org 0x00 rjmp main main: ldi temp, LOW(RAMEND) ;Stackpointer Initialize Nr.1 out SPL, temp ;2 ldi temp, HIGH(RAMEND) ;3 out SPH, temp ;and 4 ;//UART// ldi temp, LOW(UBRRVAL) sts UBRR0L, temp ldi temp, HIGH(UBRRVAL) sts UBRR0H, temp ldi temp , (3<