User`s manual
M3T-PD32R V.5.01 Release 00 Release Notes
Rev.1.00 10.01.2006 page 14 of 34
REJ10J1495-0100
file name or section name.) However, you cannot specify an instruction name (NETRY,
STARTUP) for the name.
[2] Use the name defined in [1] to define the program header using the PHDRS instruction so
that all the sections will be used as individual segments.
----------------------------------------------------------
/* [2] */
PHDRS
{
secA PT_LOAD;
secB PT_LOAD;
secC PT_LOAD;
}
.secA
E
xecution address
:
Load address
{
...
} :secA /* [1] */
.secB
E
xecution address
:
Load address
{
...
} :secB /* [1] */
.secC
E
xecution address
:
Load address
{
...
} :secC /* [1] */
----------------------------------------------------------
5.8. Changing memory contents of an external flash ROM area
Memory contents of an external flash ROM area can only be changed during download processing.
The memory contents of this area cannot be changed by operating directly on memory. Here, the
external flash ROM area refers to one that was registered from the "Init" dialog box using its Target
Dependence Memory setup page.
5.9. About the scope
The scope setting function is available only when the compiler CC32R is used. When D-CC or
TW32R is used, the scope setting function is unavailable.
5.10. About watching the local C variables
For the sake of optimization, the C compiler may place different variables at the same address. In
this case, values of the C variable may not be displayed correctly on the c watch window or other
function.