crti.S 404 B

123456789101112131415161718
  1. /*
  2. * Copyright (C) 2026 Waldemar Brodkorb <wbx@uclibc-ng.org>
  3. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  4. */
  5. .section .init,"ax",@progbits
  6. .globl _init
  7. .type _init,@function
  8. _init:
  9. addi.d $sp,$sp,-16
  10. st.d $ra,$sp,8
  11. .section .fini,"ax",@progbits
  12. .globl _fini
  13. .type _fini,@function
  14. _fini:
  15. addi.d $sp,$sp,-16
  16. st.d $ra,$sp,8