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

📄 stepldr.bib

📁 6410BSP3
💻 BIB
字号:
;
; Copyright (c) Microsoft Corporation.  All rights reserved.
;
;
; Use of this source code is subject to the terms of the Microsoft end-user
; license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
; If you did not accept the terms of the EULA, you are not authorized to use
; this source code. For a copy of the EULA, please see the LICENSE.RTF on your
; install media.
;
; NOTE: The Steppingstone loader can only be 4096 bytes in length max.  Romimage
;       will need to create and page-align the .pdata section and the linker generates
;       a 1-page header on the file.  In this .bib file we'll call the size 0x3000,
;       but we'll post-process the .nb0 file to remove the .pdata section and the header.
;
; NOTE: The Steppingstone loader and the IPL are concatenated and stored in the
;       first two SmartMedia NAND flash blocks.  If the size of either loader is
;       altered in the .bib file, the bootloader code will need to be updated as
;       it makes an assumption about the first two NAND flash blocks being reserved.
;

MEMORY
;----------------------------------------------------------------------
;   NAME        ADDRESS     SIZE        TYPE
;----------------------------------------------------------------------
IF BSP_IROMBOOT
IF SMDK6410_X5D
    STEPLDR     0C000000    00002000    RAMIMAGE        ; Image    : 8 KB (in Stepping Stone)
    RAM         600F0000    0000C000    RAM             ; RAM      : 48 KB
    STACK       600FC000    00004000    RESERVED        ; Stack    : 16 KB (sharing with Eboot)
ELSE
    STEPLDR     0C000000    00002000    RAMIMAGE        ; Image    : 8 KB (in Stepping Stone)
    RAM         500F0000    0000C000    RAM             ; RAM      : 48 KB
    STACK       500FC000    00004000    RESERVED        ; Stack    : 16 KB (sharing with Eboot)
ENDIF SMDK6410_X5D
ELSE
    STEPLDR     00000000    00002000    RAMIMAGE        ; Image    : 8 KB (in Stepping Stone)
    RAM         500F0000    0000C000    RAM             ; RAM      : 48 KB
    STACK       500FC000    00004000    RESERVED        ; Stack    : 16 KB (sharing with Eboot)
ENDIF

CONFIG
    COMPRESSION = OFF
    PROFILE = OFF
    KERNELFIXUPS = ON
IF BSP_IROMBOOT
    ROMOFFSET = F4000000
ENDIF

;    BOOTJUMP = NONE
;    RESETVECTOR = 00000000

IF BSP_IROMBOOT
    ROMSTART = 0C000000
    ROMWIDTH = 32
    ROMSIZE = 00001000
ELSE
    ROMSTART = 00000000
    ROMWIDTH = 32
    ROMSIZE = 00001000
ENDIF

MODULES
;   Name        Path                                                               Memory Type
;   ----------  --------------------------------------------------------------     -----------
    nk.exe      $(_TARGETPLATROOT)\target\$(_TGTCPU)\$(WINCEDEBUG)\stepldr.exe     STEPLDR

⌨️ 快捷键说明

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