]> Joshua Wise's Git repositories - netwatch.git/blobdiff - aseg-paging/aseg.lds
The good news is that I changed something and it worked. The bad news is that I...
[netwatch.git] / aseg-paging / aseg.lds
index 7c70a08b64b7606344894ad288e8721e7b9b0988..cf14790b025752b87bbda39f029cb834f7f50ec4 100644 (file)
@@ -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;
This page took 0.016751 seconds and 4 git commands to generate.