📄 dbsct.c
字号:
/*""FILE COMMENT""*************************************************************
* System Name : RENESAS T-Engine/micro T-Engine
* File Name : dbsct.c
* Version : 1.00.00
* Contents : Section symbol definition of D section and B section
* Model : SH7145 micro T-Engine
* CPU : SH7145F
* Compiler : Renesas SH-C
* OS : T-Kernel
* note : The Software is being delivered to you "AS IS"
* : and Renesas,whether explicitly or implicitly makes
* : no warranty as to its Use or performance.
* : RENESAS AND ITS SUPPLIER DO NOT AND CANNOT WARRANT
* : THE PERFORMANCE OR RESULTS YOU MAY OBTAIN BY USING
* : THE SOFTWARE. AS TO ANY MATTER INCLUDING WITHOUT
* : LIMITATION NONINFRINGEMENT OF THIRD PARTY RIGHTS,
* : MERCHANTABILITY, INTEGRATION, SATISFACTORY QUALITY,
* : OR FITNESS FOR ANY PARTICULAR PURPOSE.
*
* Copyright (c) 2004 RENESAS TECHNOLOGY CORP. All Rights Reserved.
* AND RENESAS SOLUTIONS CORP. All Rights Reserved.
* history : 2006.03.27 ver.1.00.00
*""FILE COMMENT END""*********************************************************/
#pragma section $DSEC
const struct {
char *rom_s; /* Start address of the initialized data section in ROM */
char *rom_e; /* End address of the initialized data section in ROM */
char *ram_s; /* Start address of the initialized data section in RAM */
char *ram_e; /* End address of the initialized data section in RAM */
}DTBL[]= {
{__sectop("D"), __secend("D"), __sectop("R"), __secend("R")},
};
#pragma section $BSEC
const struct {
char *b_s; /* Start address of non-initialized data section */
char *b_e; /* End address of non-initialized data section */
}BTBL[]= {
{__sectop("B"), __secend("B")},
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -