⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sect_mw.map

📁 picoos源码。The RTOS and the TCP/IP stack will be built automatically.
💻 MAP
字号:

/*---------------------------------------------------------------------------
 | Specify memory regions
 *-------------------------------------------------------------------------*/

MEMORY {
   RAM:  ORIGIN = 0x00100000  LENGTH = 127M
}


/*---------------------------------------------------------------------------
 | Specify group order within text section
 *-------------------------------------------------------------------------*/

SECTIONS {
   GROUP : {
     .text    :  {}
     .rodata  :  {}
     .init?   :  {}
     .tls?    :  {}
     .fini?   :  {}
     .initdat :  {}
   } > RAM
}


/*---------------------------------------------------------------------------
 | Specify group order within data section
 *-------------------------------------------------------------------------*/

SECTIONS {
   GROUP : {
     .data    :  {}
     .sbss    ALIGN(16) :  {}
     .bss     ALIGN(16) :  {}
     .stack (BSS) ALIGN(8) BLOCK(8):
     {
       // Use this space as the stack at startup.
       ___s1 = .;
       * (.stack)
       ___s2 = .;
       // Make the stack at least 8K
       . += (___s2 - ___s1 < 8K) ? (8K - (___s2 - ___s1)) : 0;
     }
   } > RAM
}

__STACK_TOP = ADDR(.stack) + SIZEOF(.stack);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -