PCM programmer
Joined: 06 Sep 2003 Posts: 21708
|
|
Posted: Mon Apr 14, 2008 4:22 pm |
|
|
Don't write to an arbitrary address in RAM. Instead, declare an array,
and write to the array. Then you won't have a conflict with the
compiler's internal variables. In other words, do everything in the
standard way, and let the compiler handle the memory allocation. |
|