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

📄 eboot.bib

📁 Windows CE 6.0 BSP for VOIP sample phone. Intel PXA270 platform.
💻 BIB
字号:
;
; Copyright (c) Microsoft Corporation.  All rights reserved.
;
;
; Use of this sample source code is subject to the terms of the Microsoft
; license agreement under which you licensed this sample source code. If
; you did not accept the terms of the license agreement, you are not
; authorized to use this sample source code. For the terms of the license,
; please see the license agreement between you and Microsoft or, if applicable,
; see the LICENSE.RTF on your install media or the root of your tools installation.
; THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES OR INDEMNITIES.
;
;******************************************************************************
; TITLE:        EBOOT.BIB
;
; Ethernet Boot Loader Source Module
;
; Memory Map
; ----------
;
; 8000.0000 -+
;            | Bootloader Stack (64KB)
; 8001.0000 -+
;            | Bootloader (reserved 64KB in case stack size is not enough)
; 8002.0000 -+
;            | Bootloader Code (320KB)
; 8007.0000 -+
;            | Bootloader RAM (512KB)
; 800F.0000 -|
;            | GAP (reserved for future)
; 800F.F000 -+
;            | ARGS (4KB)
; 8010.0000 -+ ----------------------> Put total Eboot RAM used
;            |                          so far in loader.h (0x100000)
;            | OS (NK) Code (48MB)
;            |
; 8310.0000 -+   **auto-size**
;            |
;            | OS (NK) RAM (15MB)
;            |
; 8400.0000 -+
;
;******************************************************************************

MEMORY

;   Name     Start     Size      Type
;   -------  --------  --------  ----
    STACK    80000000  00010000  RESERVED
    EBOOT    80020000  00050000  RAMIMAGE
    RAM      80070000  00080000  RAM
    RSVD     800F0000  0000F000  RESERVED
    ARGS     800FF000  00001000  RESERVED


CONFIG

    AUTOSIZE=OFF
    COMPRESSION=OFF
    PROFILE=OFF
    KERNELFIXUPS=ON
    
    ROMSTART=80020000
    ROMWIDTH=32
    ROMSIZE=00050000

    ; The bootloader 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).
    ;
    ; 80020000 + 2A6E0800 = AA700800 (virtual uncached) = 00000800 (physical)
    ; (starting address of bootloader in flash as defined in image_cfg.h)
    ;
    ROMOFFSET=2A6E0800


MODULES

;   Name    Path                                                    Memory Type
;   ------  ----------------------------------------------          -----------
    nk.exe  $(_TARGETPLATROOT)\target\$(_TGTCPU)\$(WINCEDEBUG)\eboot.exe  EBOOT

⌨️ 快捷键说明

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