%hex("...")
An instruction macro that inserts the argument literally into the assembled output:
jumpdest
%hex("7FAB")
invalid
Would become:
We already have %include_hex, but this would be useful for smaller snippets.
%string("...")
An instruction macro that inserts the argument literally into the assembled output, encoded as UTF-8:
jumpdest
%string("hello world")
invalid
Would become:
5b68656c6c6f20776f726c64fe
This macro is useful for revert reasons.
%hex("...")An instruction macro that inserts the argument literally into the assembled output:
Would become:
We already have
%include_hex, but this would be useful for smaller snippets.%string("...")An instruction macro that inserts the argument literally into the assembled output, encoded as UTF-8:
Would become:
This macro is useful for revert reasons.