Callable.end_asm_instructions()

Returns end_assembly instructions of the function/modifier.

end_asm_instructions() → Instructions

Query Example

from glider import *

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

    assembly = []
    for function in functions:
        for asm_instruction in function.end_asm_instructions().exec():
            # For each function, return the assembly instructions
            assembly.append(asm_instruction)

    return assembly

Example Output

Last updated