BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / blob / master / linker.ld

// Related

Nucleus

Barry Initial commit c629653 (3 years, 3 months ago)
ENTRY(_start)

SECTIONS {
	.text 1M :
	{
		KEEP(*(.multiboot))
		_code = .;
		*(.text*)
		. = ALIGN(4096);
	}

	.data :
	{
		_data = .;
		*(.rodata*)
		*(.data*)
		. = ALIGN(4096);
	}

	.bss :
	{
		_bss = .;
		*(.bss*)
		*(COMMON)
		. = ALIGN(4096);
	}

	_end = .;

	/DISCARD/ :
	{
		*(.comment)
	}
}