14 lines
100 B
Text
14 lines
100 B
Text
|
ENTRY(entry)
|
||
|
|
||
|
SECTIONS {
|
||
|
|
||
|
.text ALIGN(4K) : {
|
||
|
*(.text)
|
||
|
}
|
||
|
|
||
|
.data ALIGN(4K) : {
|
||
|
*(.data)
|
||
|
}
|
||
|
|
||
|
}
|