You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
labels in assembly start with . and some special labels for debugging start with .cfi currently, as Assemblyline does not support jumps, I would still appreciate, if assemblyline could just ignore those labels, instead of erroring out.
Works fine:
$ echo -e "nop\n\nnop" |asmline -p
90
90
And I'd like to see the same output with labels, but it currently tries to parse it as an instruction.
$ echo -e "nop\n.cfi_abc\nnop" |asmline -p
90
assembyline: unsupported or illegal instruction: cfi_abc
failed to assemble instruction: .cfi_abc
The text was updated successfully, but these errors were encountered:
labels in assembly start with
.
and some special labels for debugging start with.cfi
currently, as Assemblyline does not support jumps, I would still appreciate, if assemblyline could just ignore those labels, instead of erroring out.Works fine:
And I'd like to see the same output with labels, but it currently tries to parse it as an instruction.
The text was updated successfully, but these errors were encountered: