I'm migrating a project from from IAR EW430 6.10 to Code Composer 6. Things have gone very smoothly, but I've run into a problem. In my code I force the version number of the firmware into a specific set of addresses in the loadable image. The address is the same for all firmware in our product line. This allows the host to check the version number of it's most recent image and compare this to the version located on a device in the field. I had this working with the IAR compiler, but I don't seem to be able to do this with CCS. I've defined the addresses in the linker command file successfully, but in order to place the version number in those addresses the code has to run. Is there a way to force a value defined in an include file (version.h - #define MAJOR 1 #define MINOR 2) into the code image? Thanks.