X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/722e5aea4f6704ee7a3e7779c5326c157a98195b..aa9bc58fc6be92126c89fda9b5e9c0b102d0fcca:/aseg-paging/aseg.lds diff --git a/aseg-paging/aseg.lds b/aseg-paging/aseg.lds index 7c70a08..cf14790 100644 --- a/aseg-paging/aseg.lds +++ b/aseg-paging/aseg.lds @@ -19,15 +19,15 @@ SECTIONS . = 0x200000; - .maincode : { - *(.data); - *(.rodata); - *(.text); - _bss = .; - *(.bss); - _bssend = .; - _end = .; - } + .text : { *(.text); } + .data : { *(.data); } + .rodata : { *(.rodata); } + .text : { *(.text); } + + _bss = .; + .bss : { *(.bss); } + _bssend = .; + _end = .; .stack : { . = . + 0x10000;