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
I am trying to insert assembly instructions containing labels into a GTIRB file. Specifically, I want to insert a jmp label, where the label is added using the GTIRB addSymbol() function.
Currently, the method I found for inserting assembly instructions involves converting the instructions into binary sequences using Keystone and then using the provided insertBytes() function. However, there is an issue because Keystone cannot handle labels within the assembly instructions.
Therefore, I would like to know if there are any other ways in GTIRB that I might have overlooked to achieve the insertion of assembly instructions containing labels into a GTIRB file?
The text was updated successfully, but these errors were encountered:
I am trying to insert assembly instructions containing labels into a GTIRB file. Specifically, I want to insert a
jmp label
, where the label is added using the GTIRBaddSymbol()
function.Currently, the method I found for inserting assembly instructions involves converting the instructions into binary sequences using Keystone and then using the provided
insertBytes()
function. However, there is an issue because Keystone cannot handle labels within the assembly instructions.Therefore, I would like to know if there are any other ways in GTIRB that I might have overlooked to achieve the insertion of assembly instructions containing labels into a GTIRB file?
The text was updated successfully, but these errors were encountered: