📄 image_cfg.h
字号:
//
// Copyright(C) Renesas Technology Corp. 2005. All rights reserved.
//
// NK Kernel for ITS-DS7
//
// FILE : image_cfg.h
// CREATED : 2005.08.10
// MODIFIED :
// AUTHOR : Renesas Technology Corp.
// HARDWARE : RENESAS ITS-DS7
// HISTORY :
// 2005.08.10
// - Created release code.
// (based on SMDK2410/MAINSTONEII for WCE5.0)
//
// 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.
//
//------------------------------------------------------------------------------
//
// File: image_cfg.h
//
// Defines configuration parameters used to create the NK and Bootloader
// program images.
//
#ifndef __IMAGE_CFG_H
#define __IMAGE_CFG_H
#if __cplusplus
extern "C" {
#endif
//------------------------------------------------------------------------------
// RESTRICTION
//
// This file is a configuration file. It should ONLY contain simple #define
// directives defining constants. This file is included by other files that
// only support simple substitutions.
//
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// NAMING CONVENTION
//
// The IMAGE_ naming convention ...
//
// IMAGE_<NAME>_<SECTION>_<MEMORY_DEVICE>_[OFFSET|SIZE|START|END]
//
// <NAME> - WINCE, BOOT, SHARE, RAM, FLASH
// <SECTION> - section name: user defined
// <MEMORY_DEVICE> - the memory device the block resides on
// OFFSET - number of bytes from memory device start address
// SIZE - maximum size of the block
// START - start address of block (device address + offset)
// END - end address of block (start address + size - 1)
//
//------------------------------------------------------------------------------
#define IMAGE_RAM_CA_START 0x88000000
#define IMAGE_RAM_SIZE 0x08000000
#define IMAGE_FLASH_CA_START 0x80000000
#define IMAGE_FLASH_SIZE 0x04000000
#define IMAGE_FLASHCS1_CA_START 0x84000000
#define IMAGE_FLASHCS1_SIZE 0x04000000
#define IMAGE_FLASH_CA_BOOT_START 0x80080000
//------------------------------------------------------------------------------
#define IMAGE_WINCE_CODE_CA_START 0x88200000
#define IMAGE_WINCE_CODE_SIZE 0x03E00000
#define IMAGE_WINCE_RAM_CA_START 0x8C000000
#define IMAGE_WINCE_RAM_SIZE 0x02000000
//------------------------------------------------------------------------------
#define IMAGE_BOOT_CODE_CA_START 0x88100000
#define IMAGE_BOOT_CODE_SIZE 0x0002F000
#define IMAGE_BOOT_DRVGLB_CA_START 0x8812F000
#define IMAGE_BOOT_DRVGLB_SIZE 0x00001000
#define IMAGE_BOOT_STACK_CA_START 0x88130000
#define IMAGE_BOOT_STACK_SIZE 0x00008000
#define IMAGE_BOOT_RAM_CA_START 0x88138000
#define IMAGE_BOOT_RAM_SIZE 0x00018000
#define IMAGE_BOOT_FLSCACHE_CA_START 0x88200000
#define IMAGE_BOOT_FLSCACHE_SIZE 0x03E00000
//------------------------------------------------------------------------------
#if __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -