Hi Fire,
Undoubtedly this will be connected with the Linker Configuration File, *.lcf and I'm assuming that you are using CodeWarrior. Normally the flash memory on "internal flash ColdFire parts" is at 0x00000000. Here's the LCF for the MCF52235...
#/*
# * File: iflash.lcf
# * Purpose: Linker file for the M5223EVB
# *
# * Notes: Project running in internal Flash
# *
# */
MEMORY
{
rom (RX) : ORIGIN = 0x00000000, LENGTH = 0x00040000
ram (RW) : ORIGIN = 0x20000000, LENGTH = 0x00008000
}
SECTIONS
{
Maybe you want to add to your post and let us know what ColdFire device you are using, whether the code is running on a Freescale EVB (which one???) or if the code is running on your own hardware. If it is your own hardware, what is the memory map for the board. Which tool-chain are you running??
Good Luck
Mark