rominfo_depend.h
来自「T-Kernel源代码,号称占有世界处理器操作系统60%的市场份额!」· C头文件 代码 · 共 48 行
H
48 行
/* *---------------------------------------------------------------------- * T-Kernel * * Copyright (C) 2004 by Ken Sakamura. All rights reserved. * T-Kernel is distributed under the T-License. *---------------------------------------------------------------------- * * Version: 1.01.00 * Released by T-Engine Forum(http://www.t-engine.org) at 2004/6/28. * *---------------------------------------------------------------------- *//* * @(#)rominfo_depend.h (sys/M32104) * * ROM information */#ifndef __SYS_ROMINFO_DEPEND_H__#define __SYS_ROMINFO_DEPEND_H__#ifdef __cplusplusextern "C" {#endif/* * ROM information */typedef struct { UW istacksz; /* Interrupt stack size */ FP kernel; /* Kernel startup address */ UB *sysconf; /* SYSCONF top */ UB *devconf; /* DEVCONF top */ VP userarea; /* RAM user area top */ FP userinit; /* User initialization program address */ FP resetinit; /* Reset initialization program address */ VW rsv[9]; /* Reserved (always 0) */} RomInfo;#define ROMInfo ( (RomInfo*)0x00040000 )#ifdef __cplusplus}#endif#endif /* __SYS_ROMINFO_DEPEND_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?