Not a member of Pastebin yet?
                        Sign Up,
                        it unlocks many cool features!                    
                - ENTRY(loader) /* the name of the entry label */
 - SECTIONS {
 - . = 0x00100000; /* the code should be loaded at 1 MB */
 - .__mbHeader : {
 - *(.__mbHeader)
 - }
 - .text ALIGN (0x1000) : /* align at 4 KB */
 - {
 - *(.text) /* all text sections from all files */
 - }
 - .rodata ALIGN (0x1000) : /* align at 4 KB */
 - {
 - *(.rodata*) /* all read-only data sections from all files */
 - }
 - .data ALIGN (0x1000) : /* align at 4 KB */
 - {
 - *(.data) /* all data sections from all files */
 - }
 - .bss ALIGN (0x1000) : /* align at 4 KB */
 - {
 - *(COMMON) /* all COMMON sections from all files */
 - *(.bss) /* all bss sections from all files */
 - }
 - }
 
                    Add Comment                
                
                        Please, Sign In to add comment