I woulkd like to put some standard text in all programs. This text needs to be after all other code in memory. I know that I can manually locate the string of text at a particular location. However, I don't want to do this because every time I make changes to the program I will have to manually relocate this string. Is there a way that I can specify that this string of text must be located after all other code? Regards Nick
I have found a solution to my problem from reading the following thread: http://www.keil.com/forum/docs/thread2200.asp Under the 'BL51 Locate' Tab, I entered: Code: ?PR*,?CO*,?C_*,?CO?COPYRIGHT It would still be nicer to use the LAST option if available but this will have to do.