sysppcavware.s

来自「bc8260的BSP,包括各种源代码」· S 代码 · 共 58 行

S
58
字号
/* sysPpcAVware.s - BSP to vWare interface PowerPC assembly routines *//* Copyright 1984-2001 Wind River Systems, Inc. *//*modification history--------------------01c,07dec01,kab  Declare  sysPrivateVwareParams to make Diab happy01b,25oct01,g_h  Maeking compliamce with our coding convention.01a,22apr01,g_h  written*//*DESCRIPTIONThis module contains the BSP to vWare assembly interface routines.*/#define _ASMLANGUAGE 		/* Must be first *//* globals */    	FUNC_EXPORT(sysVwareParamsGet)/* externals *//* define this even if INCLUDE_VWARE_LAUNCH is not defined */	.data	.align 2sysPrivateVwareParams:	.long 0,0	_WRS_TEXT_SEG_START/********************************************************************************* sysVwareParamsGet - get vWare params** This routine pass a pointer to vWARE parameter structuer.** SYNOPSIS* \ss* UINT32 sysVwareParamsGet*     (*     void*     )* \se** RETURNS: a pointer to vWare parameter structuer*/FUNC_BEGIN(sysVwareParamsGet)	lis	r3,HI(sysPrivateVwareParams)	ori	r3,r3,LO(sysPrivateVwareParams)	blrFUNC_END(sysVwareParamsGet)

⌨️ 快捷键说明

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