You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
Right now, 3 methods are available for specifying values for cyclic registers:
prng
expressionpower
expressionA 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 0
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.The text was updated successfully, but these errors were encountered: