Hello Carlos,
This issue is probably related to .lcf file. I'd recommend you to add LOAD() command:
GROUP : {
.myFlash LOAD (ADDR(my_flash)) : {}
} > my_flash
LOAD(ADDR(my_flash)) or LOAD (0x10000) causes that .myFlash section will not create a separate image in ROM but the section starting address will be equal to ROM address = 0x00100000
If ROM address and section starting address are different then the default CodeWarrior startup routine performs copy the section block from ROM address to section starting address.
Since both addresses are in FLASH in your case an exception occurs.
You can check the Start and ROM addresses in generated .map file, e.g.:
Memory map:
Starting Size File ROM RAM Buffer S-Record
address Offset Address Address Line
.__bam_bootarea 00000000 00000008 000004c0 00000000 00000000 2
.init 00000020 000000f4 000004c8 00000020 00000020 3
.init_vle 00000114 00000244 000005bc 00000114 00000114 16
.__exception_handlers 00001000 000000a8 00000800 00001000 00001000 45
.text_vle 00002000 00000394 000008b0 00002000 00002000 54
....
Hope it helps.
Stan