We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Is there a linker command to exclude addressing spaces without using the CODE command and listing all the segments? For example, I need my code to reside within the first 8K (0000 - 1FFF) and at the end of memory (C000 - FFFF) only. I need to "keep-out" of area 2000 - BFFF which contains 38K of fixed data. FLASH IAP is driving this request to work with 3 (16K) and 2 (8K) segments within a 64K FLASH device. Thamks, Alan Preuss
Is there a linker command to exclude addressing spaces without using the CODE command and listing all the segments? You can use the CODE directive and just list the memory areas. For example: CODE (0x0000-0x1FFF,0xC000-0xFFFF) That will cause the linker to use the ranges 0x0000-0x1FFF and 0xC000-0xFFFF. Jon
Jon, Works great, thanks! Alan
Jon seems to be THE GUY that has the answers. I'm still wading through a mess of problems and when I called today, the guy that was working support almost didn't know what I was talking about and didn't seem interested in finding out. Where is Jon.... :(