DIM AT with initialization #56
-
I can do this: But cannot do this as the compiler complains with an error: Unexpected token '=>' Is there a way around this, but keeping the initialization? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi. If it has not changed the compiler does not support to initialize arrays that are in a fixed address. If this is for a big array I think what you could do is to create the array in the desired address and then LOAD a binary archive at that address, then it will be initialized with the content of the archive. Cheers. |
Beta Was this translation helpful? Give feedback.
Hi.
If it has not changed the compiler does not support to initialize arrays that are in a fixed address.
If this is for a big array I think what you could do is to create the array in the desired address and then LOAD a binary archive at that address, then it will be initialized with the content of the archive.
Cheers.