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
Defining static arrays is an issue using the !rept. meta when the array label is local. Example:
a_scope: <-- Trying to define local "a_scope.arr[idx]" labels (actually this is a "__macro_<id>" label in my case) .arr: ; <-- should have indexed .arr[<i>] labels !rept 5 { ; note: scope is now "__rept_<id>" .arr[i]: !byte 0 ; results in "__rept_<id>.my_arr[<i>]" label -> practically invisible }
A solution to this could be a new !array meta command:
Defining static arrays is an issue using the
!rept.
meta when the array label is local. Example:A solution to this could be a new
!array
meta command:… or (probably better) we could allow explicit definition of sub labels:
The text was updated successfully, but these errors were encountered: