Hello,
how I can storage variable in the specific location in memory?
For example I have
char variable; //I want have variable on address 0x2000 1500
but how it say to compiler?
I'm using Code warrior 6.3 and m52233demo
please help.
Regards
Vero
char *p_variable;p_variable = 0x20001500;// Now you just dereference the pointer to access your char// e.g. to set the variable to *:*p_variable = '*';
Message Edited by mccp on 2007-03-1510:02 AM
Message Edited by mccp on 2007-03-1510:03 AM