Other Parts Discussed in Thread: TMS320F28035
hello,
i am using c28035 these days, some documents says it has about 10KB ram , .
I found that
.init needs about 3K,
.text needs about 6K,
.ebss needs about 3K,
it may not have sufficient place any more.
So can i put (.init) into boot ROM ? like that:
ROMINIT : origin = 0x3FE000, length = 0x000900
.cinit : > ROMINIT, PAGE = 0 /*check*/
------------------------------------------------------------------------------
The initialized variables are stored in the .cinit . And the .ebss is reserved for global varibles .
After power on , data in .cinit is copied into .ebss. Then the place in .cinit is empty .
so can I use the place in .cinit again ? because the place is useful ,
the figure is 28035 memory map.
