123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .global _start
- .global __exit
- .global atexit
- .global main
- .text
- nop
- nop
- _start:
- movea.l %d5, %a5
- lea __uClibc_main-.-8, %a0
- jsr %pc@(%a0)
-
- __exit:
- move.l %sp@+,%d1
- moveq
- trap
- empty_func:
- rts
- .weak atexit
- atexit = empty_func
- .set atexit,empty_func
|