crti.s 162 B

12345678910111213
  1. .syntax unified
  2. .section .init
  3. .global _init
  4. .type _init,%function
  5. _init:
  6. push {r0,lr}
  7. .section .fini
  8. .global _fini
  9. .type _fini,%function
  10. _fini:
  11. push {r0,lr}