Hi Silpa, In your .cmd file you would probably have something like below under SECTIONS .text : > RAMx You are facing this error since your .text size is bigger than the RAMx size (RAM origin and sizes are defined under MEMORY in .cmd file) You could either combine multiple RAMs .text : >> RAMx | RAMy .. Or, you could assign it to a RAM of larger size .text : > RAMz (where the size of RAMz size more than .text size) Regards, Veena
↧