crti.s 187 B

12345678910111213
  1. .section .init
  2. .global _init
  3. .type _init,%function
  4. _init:
  5. stp x29,x30,[sp,-16]!
  6. mov x29,sp
  7. .section .fini
  8. .global _fini
  9. .type _fini,%function
  10. _fini:
  11. stp x29,x30,[sp,-16]!
  12. mov x29,sp