#include #include #include #define xtal 8000000 void main(void) { UCSRA=0x00; UCSRB=0x08; // USART Transmitter: On UCSRC=0x86; //8 Data, 1 Stop, No Parity UBRRH=0x00; UBRRL=0x33; // USART Baud rate: 9600 delay_ms(1000); putsf(" Kavosh "); while (1); }