S
Sikandar
The code is as follows
unsigned short * lpIntEnable[NUM_ITC_BANKS] =
{
(LPREG)ITC_INTENABLE_REG(0) , //These two macros give some
register addresses
(LPREG)ITC_INTENABLE_REG(1)
};
u_int32 uEnable;
uEnable = *lpIntEnable[0x00];
My question is what is being assigned to UEnable .Is it a double ptr or
wat please explain
Regards in anticipation of your replies,
Sikandar
unsigned short * lpIntEnable[NUM_ITC_BANKS] =
{
(LPREG)ITC_INTENABLE_REG(0) , //These two macros give some
register addresses
(LPREG)ITC_INTENABLE_REG(1)
};
u_int32 uEnable;
uEnable = *lpIntEnable[0x00];
My question is what is being assigned to UEnable .Is it a double ptr or
wat please explain
Regards in anticipation of your replies,
Sikandar