crti.s 205 B

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