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

Last updated