> 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.start_asm_instructions.md).

# Callable.start\_asm\_instructions()

Returns start assembly instructions of the function/modifier.

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

## Query Example

```python
from glider import *

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

  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

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FRSHOphmaqmA3rW3z9zy4%2Fimage.png?alt=media&amp;token=a4f30968-737c-4cf8-a750-66d3f916fcaa" alt=""><figcaption></figcaption></figure>
