Instruction.is_from_assembly()
Returns true if the instruction is from assembly block, otherwise returns false.
Query Example
from glider import *
def query():
return Instructions().exec(1000).filter(lambda x: x.is_from_assembly())Output Example

Last updated