??? 03/04/10 11:45 Modified: 03/04/10 11:48 Read: times |
#173830 - Does Keil initialise non-static data? Responding to: ???'s previous message |
The real issue is not with XRAM (class xdata) but RAM (class data) (that's where buffer[2] in question was declared into).
Part of the RAM may be used for non-static data (local variables, parameters, spills) - or, unused at all. The array in question may quite well be the last static variable in this program. We'd need to see the memory map (does Keil produce such?) to make justice. JW |