> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/callable/callable.end_asm_instructions.md).

# Callable.end\_asm\_instructions()

`end_asm_instructions() →` [`Instructions`](/glider-ide/api/instructions.md)

## Query Example

```python
from glider import *

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

    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

<figure><img src="/files/PO6kXGDIFKx4vTBoemDP" alt=""><figcaption></figcaption></figure>
