-
Notifications
You must be signed in to change notification settings - Fork 49
Open
Labels
A-assemblerArea: assemblerArea: assemblerC-enhanceCategory: a request for an improvementCategory: a request for an improvementE-mediumExperience: of moderate difficultyExperience: of moderate difficulty
Description
%hex("...")
An instruction macro that inserts the argument literally into the assembled output:
jumpdest
%hex("7FAB")
invalid
Would become:
5b7fabfe
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.
Metadata
Metadata
Assignees
Labels
A-assemblerArea: assemblerArea: assemblerC-enhanceCategory: a request for an improvementCategory: a request for an improvementE-mediumExperience: of moderate difficultyExperience: of moderate difficulty