I need to plase a buffer of 128 byte to absolute address at RAM (e.g. 0xC7FE) with any time write/read access. It is array of unsigned int of 64 words. How to do it in C-code, not in linker? How to use pointers to array or i have to use macros HARRAY? Thanks. p.s. give me please links to some examples of code.
How to do it in C-code, not in linker? As far as I know, you can't do it in C code only. Here is how it's done: http://www.keil.com/support/docs/586.htm How to use pointers to array or i have to use macros HARRAY? If you follow the instructions in the knowledgebase article, you can treat the array like any other C-style array. Regards, - mike