18 lines
166 B
Plaintext
18 lines
166 B
Plaintext
ENTRY(main)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x1000;
|
|
|
|
.text : {
|
|
*(.text)
|
|
}
|
|
|
|
.data : {
|
|
*(.data)
|
|
}
|
|
|
|
.bss : {
|
|
*(.bss)
|
|
}
|
|
} |