Specifications
Embedded System Tools Guide (EDK 6.2i) www.xilinx.com 315
UG111 (v1.4) January 30, 2004 1-800-255-7778
MicroBlaze Processor
R
 . += _STACK_SIZE;
 . = ALIGN(4);
 } >LMB
 _stack = .;
 /* */
 /* Start of OPB memory */
 /* */
 .opb_text : {
 /* Uncomment the following line to add an executable section into */
 /* opb memory */
 /* file1.o(.text) */
 } >OPB
. = ALIGN(4);
 .rodata : {
 *(.rodata)
 } >OPB
/* Alignments by 8 to ensure that _SDA2_BASE_ on a word boundary */
. = ALIGN(8);
 _ssrw = .;
 .sdata2 : {
 *(.sdata2)
 } >OPB
 . = ALIGN(8);
 _essrw = .;
 _ssrw_size = _essrw - _ssrw;
_SDA2_BASE_ = _ssrw + (_ssrw_size / 2 );
 . = ALIGN(4);
 .data : {
 *(.data)
 } >OPB
 /* Alignments by 8 to ensure that _SDA_BASE_ on a word boundary */
 /* Note that .sdata and .sbss must be contiguous */
 . = ALIGN(8);
 _ssro = .;
 .sdata : {
 *(.sdata)
 } >OPB
 . = ALIGN(4);
 .sbss : {
__sbss_start = .;
 *(.sbss)
__sbss_end = .;
 } >OPB
 . = ALIGN(8);
 _essro = .;
 _ssro_size = _essro - _ssro;
_SDA_BASE_ = _ssro + (_ssro_size / 2 );
 . = ALIGN(4);
.opb_bss : {
__bss_start = .;
 *(.bss) *(COMMON)










