So I'm not sure if this is best handled as a known/documented incompatibility between 12.0 and 13,x and the workaround is best practice for this situation, or if there is actually an issue to address. A note that conversions/calculations required in asm{...} blocks should be performed with temporary values in the wiki could suffice.
In 12.0, following is valid:
which obviously fails in 13.x with the requirement of enclosing parameters in {}; however enclosing in {} also fails:
it seems the parameters can end up out of scope.
However, as a workaround, the following does work:
So I'm not sure if this is best handled as a known/documented incompatibility between 12.0 and 13,x and the workaround is best practice for this situation, or if there is actually an issue to address. A note that conversions/calculations required in asm{...} blocks should be performed with temporary values in the wiki could suffice.