diff options
Diffstat (limited to 'crti.s')
-rw-r--r-- | crti.s | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ + .seg ".init" + .globl _init + .type _init,#function +_init: + save %sp,-96,%sp + + .seg ".fini" + .globl _fini + .type _fini,#function +_fini: + save %sp,-96,%sp |