crti.s raw

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