mxrox/linker.ld

24 lines
273 B
Plaintext

ENTRY (loader)
SECTIONS
{
. = 0x00100000;
.mbheader : {
*(.mbheader)
}
.text : {
*(.text)
}
.rodata ALIGN (0x1000) : {
*(.rodata)
}
.data ALIGN (0x1000) : {
*(.data)
}
.bss : {
sbss = .;
*(COMMON)
*(.bss)
ebss = .;
}
}