Skip to content

Commit

Permalink
update: option setting memory sections
Browse files Browse the repository at this point in the history
  • Loading branch information
hirakuni45 committed May 20, 2018
1 parent 674ec7b commit 210818f
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
25 changes: 25 additions & 0 deletions RX71M/R5F571MF.ld
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,31 @@ SECTIONS
LONG (_start);
}

/* Option Setting Memory: SPCC */
.spcc (0x00120040) :
{
PROVIDE (__spcc = .);
*(.spcc)
}
/* Option Setting Memory: OSIC */
.osic (0x00120050) :
{
PROVIDE (__osic = .);
*(.osic)
}
/* Option Setting Memory: OFS0 */
.ofs0 (0x00120068) :
{
PROVIDE (__ofs0 = .);
*(.ofs0)
}
/* Option Setting Memory: OFS1 */
.ofs1 (0x0012006C) :
{
PROVIDE (__ofs1 = .);
*(.ofs1)
}

/* The rest are all not normally part of the runtime image. */

/* Stabs debugging sections. */
Expand Down
25 changes: 25 additions & 0 deletions RX71M/R5F571ML.ld
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,31 @@ SECTIONS
LONG (_start);
}

/* Option Setting Memory: SPCC */
.spcc (0x00120040) :
{
PROVIDE (__spcc = .);
*(.spcc)
}
/* Option Setting Memory: OSIC */
.osic (0x00120050) :
{
PROVIDE (__osic = .);
*(.osic)
}
/* Option Setting Memory: OFS0 */
.ofs0 (0x00120068) :
{
PROVIDE (__ofs0 = .);
*(.ofs0)
}
/* Option Setting Memory: OFS1 */
.ofs1 (0x0012006C) :
{
PROVIDE (__ofs1 = .);
*(.ofs1)
}

/* The rest are all not normally part of the runtime image. */

/* Stabs debugging sections. */
Expand Down

0 comments on commit 210818f

Please sign in to comment.