> 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()

Returns end\_assembly instructions of the function/modifier.

`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="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FSJ0tmdQcI7z4GKsJRf7N%2Fimage.png?alt=media&amp;token=c4bbdcf9-a5fb-4611-84e9-68a4da0b0397" alt=""><figcaption></figcaption></figure>
