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
labels in assembly start with
.and some special labels for debugging start with.cficurrently, 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.