linker: ensured .bss comes after .data, and added map file output
This commit is contained in:
parent
a81c4be013
commit
e3c9c7b642
4 changed files with 11 additions and 5 deletions
|
|
@ -6,5 +6,6 @@ SECTIONS
|
|||
.boot 0xC3C3 : { *(.boot) *(boot) }
|
||||
.vectors 0xF000 : { *(.vectors) }
|
||||
.data 0x7000 : { *(.data) }
|
||||
.bss : { *(.bss) }
|
||||
__data_end = .;
|
||||
.bss __data_end : { *(.bss) }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue