Kinl/linker.ld

32 lines
257 B
Plaintext

ENTRY (_start)
OUTPUT_FORMAT(binary)
SECTIONS
{
. = 1M;
.text : ALIGN (4096)
{
*(.text)
}
.rodata : ALIGN (4096)
{
*(.rodata)
}
.data : ALIGN (4096)
{
*(.data)
}
.bss : ALIGN (4096)
{
*(COMMON)
*(.bss)
}
.asm :
{
*(.asm)
}
}