Permalink
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up| ENTRY(_start) | |
| SECTIONS | |
| { | |
| PROVIDE(__ipl_start = 0x40003000); | |
| . = __ipl_start; | |
| .text.start : | |
| { | |
| *(.text.start) | |
| } | |
| .text : | |
| { | |
| *(.text*); | |
| } | |
| .data : | |
| { | |
| *(.data*); | |
| *(.rodata*); | |
| } | |
| . = ALIGN(0x10); | |
| __ipl_end = .; | |
| .bss : | |
| { | |
| __bss_start = .; | |
| *(COMMON) | |
| *(.bss*) | |
| __bss_end = .; | |
| } | |
| } |