Hi everybody, I am using DKARMv1.03, GNU tools (GCCv331), LPC2104, ULINK. I want to download an Application at address 0x000020000. In accordance with the technical report titled "ARM: PROBLEMS WHEN CODE START IS 0X20 - 0X7FFF" found in this web, my linker script is: MEMORY { CODE (rx) : ORIGIN = 0x00000000, LENGTH = 0x0001E000 DATA (rw) : ORIGIN = 0x40000000, LENGTH = 0x00003F00 } and I have: Project - Options - Linker - Text Start: 0x00002000 Downloading always failes, without generating any error. I have tried different addresses ranges in the programming algorithm, without better results. How can I download an APP with a text start different than 0x0 ??? Thanks in advance.