possibly like this: ```asm #macro, 2 mov r1, $2 + 3 $1 #endmacro mymacro { umul r1, 4 add r1, 5 }, 6 ``` which would expand to: ```asm mov r1, 6 + 3 umul r1, 4 add r1, 5 ```
possibly like this:
which would expand to: