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

`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="/files/snR8ibGXLwZyAdvta7Tm" alt=""><figcaption></figcaption></figure>
