23.3.4.20 .sbss Section
This section collects the small uninitialized data from all of the application’s
input files. This section is assigned to the data memory region
(kseg1_data_mem). A symbol is defined to represent the virtual
begin address of uninitialized data (_bss_begin). Symbols are also
defined to represent the virtual begin (_sbss_begin) and end
(_sbss_end) addresses of this section.
_bss_begin = . ;
.sbss :
{
_sbss_begin = . ;
*(.dynsbss)
*(.sbss .sbss.* .gnu.linkonce.sb.*)
*(.scommon)
_sbss_end = . ;
} > kseg1_data_mem
