Re: [avr-gcc-list] startup file

2005-11-06 Thread Bernd Trog
On Fri, 4 Nov 2005, Parthasaradhi Nayani wrote: Have you tried to remove *(.vectors) from the linker script? Thanks for the reply. I was not sure if one could remove vector table from being linked. Take a look into avr-libc's gcrt1.S. It has its own section. I am under the impression

Re: [avr-gcc-list] startup file

2005-11-04 Thread Bernd Trog
--- Parthasaradhi Nayani [EMAIL PROTECTED] wrote: Hello all, I have written a very simple bootloader and it is working OK. I would like to eliminate the intial interrupt vectors to get more flash space. Have you tried to remove *(.vectors) from the linker script?

Re: [avr-gcc-list] startup file

2005-11-04 Thread Parthasaradhi Nayani
Hello Bernd Trog, --- Bernd Trog [EMAIL PROTECTED] wrote: Have you tried to remove *(.vectors) from the linker script? Thanks for the reply. I was not sure if one could remove vector table from being linked. I am under the impression that vector table is a part and parcel of the startup

[avr-gcc-list] startup file

2005-10-31 Thread Parthasaradhi Nayani
Hello all, I have written a very simple bootloader and it is working OK. I would like to eliminate the intial interrupt vectors to get more flash space. To achieve this I would like to assemble the crtx file. I am not sure if this is the right approach, and therefore seeking your suggestions. Not