StartAssemblyInstruction.get_block_instructions()
Returns all instructions from the assembly block
get_block_instructions() →
APIList
[
Instruction
]
Query Example
from glider import *
def query():
assembly_instructions = Functions().exec(1,57).start_asm_instructions().exec()
return assembly_instructions + assembly_instructions[0].get_block_instructions()
Example Output



Last updated