From 90a6065691beee52bf5309916fba98f7580d27be Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Sat, 3 Feb 2024 00:50:07 -0500 Subject: refactor, new arch dirs, (wip) page alloc on write, hsv screen (convert to userspace later), other fixes --- src/arch/amd64/linker.ld | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 src/arch/amd64/linker.ld (limited to 'src/arch/amd64/linker.ld') diff --git a/src/arch/amd64/linker.ld b/src/arch/amd64/linker.ld deleted file mode 100644 index 0032765..0000000 --- a/src/arch/amd64/linker.ld +++ /dev/null @@ -1,38 +0,0 @@ -ENTRY(start) - -SECTIONS { - . = 1M; - - kernel_start = .; - - .boot BLOCK(4K) : ALIGN(4K) - { - *(.multiboot) - } - - .rodata BLOCK(4K) : ALIGN(4K) - { - *(.rodata) - } - - .data BLOCK(4K) : ALIGN(4K) - { - *(.data) - } - - text_start = .; - - .text BLOCK(4K) : ALIGN(4K) - { - *(.text) - } - - text_end = .; - - .bss BLOCK(4K) : ALIGN(4K) - { - *(.bss) - } - - kernel_end = .; -} -- cgit v1.2.3-freya