rominfo_depend.h

来自「嵌入式操作系统T-Kernel 完整代码」· C头文件 代码 · 共 53 行

H
53
字号
/* *---------------------------------------------------------------------- *    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/SH7760) * *	ROM information  */#ifndef __SYS_ROMINFO_DEPEND_H__#define __SYS_ROMINFO_DEPEND_H__#ifdef __cplusplusextern "C" {#endif/* * ROM information  */typedef struct {	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 */	UW	*ioconf;	/* IO configuration address */	VW	rsv[9];		/* Reserved (always zero) */	UW	rd_type;	/* ROM disk type */	UW	rd_blksz;	/* ROM disk block size */	UW	rd_saddr;	/* ROM disk start address */	UW	rd_eaddr;	/* ROM disk end address */	VW	rsv2[12];	/* Reserved (always zero) */} RomInfo;#define	ROMInfo	( (RomInfo*)0x80010000 )#ifdef __cplusplus}#endif#endif /* __SYS_ROMINFO_DEPEND_H__ */

⌨️ 快捷键说明

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