mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
17 lines
190 B
Perl
17 lines
190 B
Perl
|
SECTIONS
|
||
|
{
|
||
|
.text 0x100 : {
|
||
|
text_start = .;
|
||
|
*(.text)
|
||
|
*(.pr)
|
||
|
text_end = .;
|
||
|
}
|
||
|
. = 0x1000;
|
||
|
.data : {
|
||
|
data_start = .;
|
||
|
*(.data)
|
||
|
*(.rw)
|
||
|
data_end = .;
|
||
|
}
|
||
|
}
|