aux-crt2.asm

来自「gcc-2.95.3 Linux下最常用的C编译器」· 汇编 代码 · 共 43 行

ASM
43
字号
/* More startup code for A/UX */#include "tm.h"#ifdef USE_BIN_AS	file "crt2.s"/* The init section is used to support shared libraries */	init	global	__istart__istart:	link %fp,&-4#else	.file "crt2.s"/* The init section is used to support shared libraries */.section .init, "x".even.globl __istart__istart:	link %fp,#-4#ifndef USE_COLLECT2/* The ctors and dtors sections are used to support COFF collection of    c++ constructors and destructors */.section .ctors, "d".even.globl __CTOR_LIST____CTOR_LIST__:	.long -1.section .dtors, "d".even.globl __DTOR_LIST____DTOR_LIST__:	.long -1#endif /* USE_COLLECT2 */#endif /* USE_BIN_AS */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?