mirror of
https://github.com/google/pebble.git
synced 2025-05-18 01:14:55 +00:00
spelling: section
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
eddc390e76
commit
acad6e8efa
6 changed files with 22 additions and 22 deletions
|
@ -96,28 +96,28 @@ SECTIONS
|
|||
.data : AT ( _sidata )
|
||||
{
|
||||
. = ALIGN(4);
|
||||
/* This is used by the startup in order to initialize the .data secion */
|
||||
/* This is used by the startup in order to initialize the .data section */
|
||||
_sdata = .;
|
||||
|
||||
*(.data)
|
||||
*(.data.*)
|
||||
|
||||
. = ALIGN(4);
|
||||
_edata = .; /* This is used by the startup in order to initialize the .data secion */
|
||||
_edata = .; /* This is used by the startup in order to initialize the .data section */
|
||||
} >RAM
|
||||
|
||||
/* This is the uninitialized data section */
|
||||
.bss :
|
||||
{
|
||||
. = ALIGN(4);
|
||||
_sbss = .; /* This is used by the startup in order to initialize the .bss secion */
|
||||
_sbss = .; /* This is used by the startup in order to initialize the .bss section */
|
||||
|
||||
*(.bss)
|
||||
*(.bss.*)
|
||||
*(COMMON)
|
||||
|
||||
. = ALIGN(4);
|
||||
_ebss = .; /* This is used by the startup in order to initialize the .bss secion */
|
||||
_ebss = .; /* This is used by the startup in order to initialize the .bss section */
|
||||
} >RAM
|
||||
|
||||
.stack :
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue