1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .global _start
- .global __exit
- .global atexit
- .global main
- .h8300h
- .text
- _start:
- mov.l @(0,sp),er0
- mov.l @(4,sp),er1
- mov.l @(8,sp),er2
- jsr @___uClibc_main
-
-
- __exit:
- mov.l er0,er1
- sub.l er0,er0
- inc.l
- trapa
- empty_func:
- rts
- .weak atexit
- atexit = empty_func
- .set atexit,empty_func
|