Callable.start_asm_instructions()

Returns start assembly instructions of the function/modifier.

start_asm_instructions() → Instructions

Query Example

from glider import *

def query():
  functions = Functions().exec(100)

  start_asm_instructions = []
  for function in functions:
    for instruction in function.start_asm_instructions().exec():
      # Return the start assembly instructions for each function
      start_asm_instructions.append(instruction)

  return start_asm_instructions

Output Example

Last updated