Hello
HC08 compiler places all constants per default in a section called ROM_VAR (or .rodata).
This section is placed in flash in the.prm file generated by the wizard.
If you wish to get your constants allocated in RAM, just place the section into a RAM memory area in the .prm file PLACEMENT block.
If you have defined your own constant section (using pragma CONST_SEG), just place this section in a RAM memory area in the .prm file PLACEMENT block.
If you decide to allocate your constants in RAM, make sure you are not building with option -D__ONLY_INIT_SP. Initialization values for your constants will need to be copied from ROM to RAM at startup so you need to execute the whole startup code.
I hope this helps.
CrasyCat