Hi
I got macro in *.s file, something like this:
.MACRO MYMACRO STS buffer+#0, R16 .ENDM
NOTE '#0' is in fact 'percent 0' because it's not possible to post with percent 0 in the message body.
When I try to use it in the assembler code:
MYMACRO(1)
an compilation error is shown: Error: too many positional arguments
How to pass arguments to macros?