Right now, 3 methods are available for specifying values for cyclic registers:
- Explicit list of values
prng expression
power expression
A few other methods would enable succinct definition of more elaborate value patterns:
- Patterned expressions, for example;
(repeat 1 4) (repeat 0 4) instead of 1 1 1 1 0 0 0 0
- Function calls where repeated invocation of a function would define the sequence of values.
a. This can be expanded into generating values for multiple registers at the same time.
b. This can potentially replace power expression - though, maybe having a simple way to generate a power sequence is still a good idea.
Right now, 3 methods are available for specifying values for cyclic registers:
prngexpressionpowerexpressionA few other methods would enable succinct definition of more elaborate value patterns:
(repeat 1 4) (repeat 0 4)instead of1 1 1 1 0 0 0 0a. This can be expanded into generating values for multiple registers at the same time.
b. This can potentially replace
powerexpression - though, maybe having a simple way to generate a power sequence is still a good idea.