The `$label` syntax is not a thing, BUT it could be!! I managed to hack it together for uxnasm in a couple of lines of code
https://paste.sr.ht/~bellinitte/54fd46afdf4aeaac3ae4449e518ba11daf7c6309
Top-level
The `$label` syntax is not a thing, BUT it could be!! I managed to hack it together for uxnasm in a couple of lines of code https://paste.sr.ht/~bellinitte/54fd46afdf4aeaac3ae4449e518ba11daf7c6309 4 comments
@bellinitte Added to drifblim(adds 1 byte?!): https://git.sr.ht/~rabbits/drifblim/commit/a9446ceeb63246671229496fb67d9fe828e533ed |
This stuff is sorta possible with the current syntax using a bunch of macros like these:
```
%Vector/size$ { $4 }
%Player/size$ { $9 }
@player-1 Player/size$
```
but this approach requires adjusting all paddings by hand in case any size changes.