You may do that directly in the window of the visual programmer, where the memory is free of any code. Or maybe by adding a constant declaration in your code.....
SEGMENT BYTE AT F000-FF00 'ROM' SEGMENT BYTE AT FF00-FFDF 'TITLE' in your source file SEGMENT 'TITLE' DC.B 'A' DC.B 'B' DC.B 'C' the string ABC will then be located starting from adress 0xff00 (check it in the window of the visual programmer) Rgds Florent
+seg .str -b 0xf000 -n .str # special const section +seg .text -n .text -a .str # program code +seg .const -a .text # constants follow code then to put our string in the special section use #pragma section const {str} const char * const pString = ''teststring''; #pragma section const {} Hope this helps Regards Spen