On Sat, 31 May 2003, Frank Heckenbach wrote:
Frank,
line 7: .common N,1999999996,4
am I right to think that the elements of N are stored on 4 bytes according to this notation? That would explain the size I can see on the "top" as the memory allocation. On the other hand it is a bad news. N supposed to be an integer, i.e. 2 bytes. The compiler allocates twice of the necessary size for the array. It is not a problem for "normal" size arrays but it could be a big problem for larger ones.
Cheers,
miklos