mirror of
https://github.com/justinian/jsix.git
synced 2025-12-09 16:04:32 -08:00
33 lines
307 B
Plaintext
33 lines
307 B
Plaintext
ENTRY(start)
|
|
SECTIONS
|
|
{
|
|
. = 0x100000;
|
|
|
|
.__mbHeader : {
|
|
mboot = .;
|
|
*(.__mbHeader)
|
|
. = ALIGN(4096);
|
|
}
|
|
|
|
.text : {
|
|
code = .;
|
|
*(.text)
|
|
. = ALIGN(4096);
|
|
}
|
|
|
|
.data : {
|
|
data = .;
|
|
*(.data)
|
|
*(.rodata)
|
|
. = ALIGN(4096);
|
|
}
|
|
|
|
.bss : {
|
|
bss = .;
|
|
*(.bss)
|
|
. = ALIGN(4096);
|
|
}
|
|
|
|
end = .;
|
|
}
|