📄 sysppcavware.s
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -