Currently I am doing this: ``` _VAL SET 0 REPEAT 5 .byte _VAL * 10 _VAL SET _VAL + 1 REPEND ``` With access to the repeat counter (e.g. REPCNT), one could do this: ``` REPEAT 5 .byte REPCNT * 10 REPEND ```
Currently I am doing this:
With access to the repeat counter (e.g. REPCNT), one could do this: