Cserzo Miklos wrote:
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.
`Integer' is 4 or 8 bytes, depending on the platform, never 2 bytes. To get a 2 bytes integer use `Integer attribute (Size = 16)'.
Frank