WIP
This commit is contained in:
@@ -7,20 +7,10 @@ SECTIONS
|
||||
{
|
||||
.magic_header : ALIGN(4) {
|
||||
LONG(0x88DAD0F2) /* Magic header containing */
|
||||
LONG(ADDR(.text)) /* Entry point */
|
||||
} > RAM
|
||||
LONG(ADDR(.text)) /* Entry point */
|
||||
}
|
||||
|
||||
.text : ALIGN(4) {
|
||||
*(.text)
|
||||
*(.rodata)
|
||||
} > RAM
|
||||
|
||||
.data : ALIGN(4) {
|
||||
*(.data)
|
||||
} > RAM
|
||||
|
||||
.bss : ALIGN(4) {
|
||||
*(.bss)
|
||||
*(COMMON)
|
||||
} > RAM
|
||||
.text : { *(.text) *(.rodata) } > RAM
|
||||
.data : { *(.data) } > RAM
|
||||
.bss : { *(.bss) *(COMMON) } > RAM
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user