|
Post by quartzite on Aug 11, 2022 22:48:12 GMT
Hello!
I'm trying to understand why this call does not work:
ASS WK0 = M2 +P I have already generated K0 to define my index to store my variable. Without the preserve it works. This line is part of a script to store arbitrary CCs for recall the next time StreamByter is loaded.
Thanks much! StreamByter rocks!
|
|
abadam
Developer 
Rotten Apple
Posts: 52
|
Post by abadam on Aug 12, 2022 15:41:04 GMT
I'm sure I read this somewhere else, but almost 100% sure you can only preserve direct variables, like W0 or L6 and not ones with an index like you are trying.
|
|
|
Post by quartzite on Aug 19, 2022 22:40:16 GMT
I'm sure I read this somewhere else, but almost 100% sure you can only preserve direct variables, like W0 or L6 and not ones with an index like you are trying. Ah yea you are correct! Thanks for this. It is a weird limitation, I wonder why it can't be open to indexing.
|
|
|
Post by redheronmusic on Aug 27, 2022 16:04:58 GMT
NIc covers Preserve in this post: audeonic.boards.net/post/3948You could brute force preserve the entire W array like he does in the Nimble Looper preset: # brute force preserve entire W array if load ASS W0000 = 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 preserve ASS W0010 = 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 preserve ASS W0020 = 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 preserve ASS W0030 = 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 preserve ASS W0040 = 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 preserve ASS W0050 = 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 preserve ... End
|
|