You got me wrong
I was meaning pceas.
Ahhh ... I thought that was probably what you meant, thanks for the clarification.
--------------
I've asked the CC65 developers what their opinion is on putting in an option for using square-brackets instead of braces.
As a "programmer", I personally prefer the square-bracket, because it makes things easier to read (to me), and because I like to put expressions in braces, particularly when they are complex expressions, so I prefer
lda (structure+member_offset),y rather than
lda structure+member_offset,y It's just not possible to use a complex expression in some 6502 instructions if the opening brace of that expression changes the meaning of the instruction.
But, like TheOldMan, I can adapt if necessary.