chiark / gitweb /
Make run_directory.c stat the place it is going to try to run.
[elogind.git] / klibc / klibc / arch / alpha / crt0.S
1 #
2 # arch/alpha/crt0.S
3 #
4
5         .text
6         .type   _start,@function
7         .ent    _start, 0
8         .globl  _start
9 _start:
10         .frame  $30, 0, $26, 0
11         mov     $31, $15
12         br      $29, 1f
13 1:      ldgp    $29, 0($29)
14         .prologue 0
15
16         lda     $16, 0($30)             # ELF data structure
17         lda     $17, 0($0)              # atexit pointer
18         
19         jsr     $26, __libc_init
20         
21         .size   _start,.-_start
22         .end    _start