Force to use register instead of ram memory

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

Force to use register instead of ram memory

跳至解决方案
1,506 次查看
jean-christoph7
Contributor III

Hello,

 

I've a function to test my ram a the begining of my software.

 

In this function, I fill whole the ram area with a pattern and I read the ram area to compare with the written pattern.

 

This function is written in C to be portable on other project.

 

This function uses 2 variables:

 

teStdReturnType MTST_TestRamIsOk(void)

{

 

teStdReturnType eReturn;

UINT32 u32Address;

..

return(eReturn);

}

 

Actually this function uses just registers, it is perfect because it doesn't use the ram memory.

 

But I need to be sure this function never use ram memory.

 

Is a directive or a command exist to force this function to use just registers ?

 

Thanks for your support.

标签 (1)
0 项奖励
回复
1 解答
1,324 次查看
jean-christoph7
Contributor III
0 项奖励
回复
2 回复数
1,324 次查看
TICS_Fiona
NXP Employee
NXP Employee

Hello jean-christophe

Please use 'register' to define the variable, like:

register UINT32 u32Address;

Best Regards

Fiona Kuang

TIC - Technical Information Center

-----------------------------------------------------------------------------------------------------------------------

Note: If this post answers your question, please click the Mark Correct button. Thank you!

-----------------------------------------------------------------------------------------------------------------------

0 项奖励
回复
1,325 次查看
jean-christoph7
Contributor III

Thanks a lot!

0 项奖励
回复