All example AVR programs I've ever seen start with code such as the following:
.org $0000
rjmp Reset
; ...
Reset:
; Start of program
If I'm not making use of any interrupts can I do without the rjmp
and start the program at $0000
?