/*Mask option*/
//BZ/BZB :
//SysFreq:
//the others use the default value
/********************************************************************/
#include <HT48R30A-1.H>
//-------------------------------
unsigned char i;
unsigned char j;
//-------------------------------
void test(unsigned char t)
{
t=0x3;
}
//-------------------------------
void main(void)
{
j=5;
////////////////////////////////////////////////////////////
test(j);//执行此步后j还是等于5;但在keil下用c51,执行此步后,j=3;
////////////////////////////////////////////////////////////
while(1);
}