[quote:50cb5a7eff="torkelmj"]
I'm trying to specify a DATA matrix of 256 byte values. This fails on compile, stating "invalid number of parameters" once I've specified more than 249 values. Is there a limit to the number of byte elements I can place in the DATA section (it surely is, but how can it be calculated - and how can I specify my 256 elements)?
[/quote:50cb5a7eff]
Seems to be a limit to the number of elements that can follow a single DATA statement.
[code:1:50cb5a7eff]
THELABEL:
DATA value1, value2, ... valueX
DATA valueX+1, valueX+2, ...
[/code:1:50cb5a7eff]
...seems to do the trick. :) [/code]
↧