about summary refs log blame commit diff
path: root/src/linker.ld
blob: 141428c33d18d9bca8a614c9c4cddc91187ffd2f (plain) (tree)



























                                     
ENTRY(_start)
SECTIONS
{
	. = 1M;
 
	/* Multiboot header */
	.text BLOCK(4K) : ALIGN(4K)
	{
		*(.multiboot)
		*(.text)
	}
 
	.rodata BLOCK(4K) : ALIGN(4K)
	{
		*(.rodata)
	}
 
	.data BLOCK(4K) : ALIGN(4K)
	{
		*(.data)
	}
 
	.bss BLOCK(4K) : ALIGN(4K)
	{
		*(COMMON)
		*(.bss)
	}
}