b34bce4553
Extend the romImage code to allow putting data between the head.S file and the empty_zero_page. Needed in the case of more advanced loader code in a separate C file. Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
8 lines
58 B
Plaintext
8 lines
58 B
Plaintext
SECTIONS
|
|
{
|
|
.text : {
|
|
zero_page_pos = .;
|
|
*(.data)
|
|
}
|
|
}
|