ipl.bib

来自「该BSP是基于PXA270+WINCE的BSP」· BIB 代码 · 共 48 行

BIB
48
字号
;
; 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:
; IPL runs entirely in the physical memory space. So the addresses below
; are all physical address.
; 
MEMORY
;   Name      Start     Size      Type
;   -------   --------  --------  ----
    STACK     A0000000  00010000  RESERVED
    RAM       A0010000  00010000  RAM
    IPL       A0020000  00040000  RAMIMAGE
    BPART_BUF A0060000  00080000  RESERVED

CONFIG
    COMPRESSION=ON
    PROFILE=OFF
    KERNELFIXUPS=ON
    
    ROMSTART=A0020000
    ROMWIDTH=32
; Note ROMSIZE is a flash block size (different from text size).
    ROMSIZE=00040000

    ; The IPL is fixed up to run from RAM, but is stored in flash.  ROMOFFSET
    ; adjusts the .bin file record headers to that they lie in flash (this tells the
    ; bootloader already on the device to store the image in flash).
IF MCPII_MODULE
    ROMOFFSET=1AA60000
ELSE
    ROMOFFSET=1CA60000
ENDIF

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

⌨️ 快捷键说明

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