I would like to ask you about assign specific memory adress for variable in C language. I need to setup Understand SciTool software, and I have some issues about it.
Please have a look:
#define dPU1 0xF0031
__SFR_EXTERN__ __near __no_init volatile union
{
TByte ioPU1;
TBitfieldByte ioPU1_Bits;
} @dPU1;
dPU1 is a register adress (Renesas RL78). Understand SciTool cant process it. I recived those messages:
[E] pasting formed '@dSMR02', an invalid preprocessing token;
[E] expected ';' after union
[E] expected identifier or '('
I can't find any information about "@" in C language. Any idea? Thanks!