8sa1-gcc/gcc/config/m68k/aux-crtn.asm

27 lines
298 B
NASM
Raw Normal View History

1996-03-05 18:43:19 -05:00
/* More startup code for A/UX */
#include "tm.h"
#ifdef USE_BIN_AS
file "crtn.s"
init
unlk %fp
rts
#else
.file "crtn.s"
.section .init, "x"
unlk %fp
rts
#ifndef USE_COLLECT2
.section .ctors, "d"
.long 0
.section .dtors, "d"
.long 0
#endif /* USE_COLLECT2 */
#endif /* USE_BIN_AS */