X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/97626136c186f33306ee477490f5de13f86227bf..e0ee3d449aacd33a84cb1f58961e55f9f06acb46:/lunaix-os/linker.ld diff --git a/lunaix-os/linker.ld b/lunaix-os/linker.ld new file mode 100644 index 0000000..79dd63a --- /dev/null +++ b/lunaix-os/linker.ld @@ -0,0 +1,23 @@ +ENTRY(start_) + +SECTIONS { + . = 0x100000; + + .text BLOCK(4K) : { + * (.multiboot) + * (.text) + } + + .bss BLOCK(4K) : { + * (COMMON) + * (.bss) + } + + .data BLOCK(4k) : { + * (.data) + } + + .rodata BLOCK(4K) : { + * (.rodata) + } +} \ No newline at end of file