crti.asm

来自「gcc-you can use this code to learn somet」· 汇编 代码 · 共 27 行

ASM
27
字号
/* 4 slots for argument spill area.  1 for cpreturn, 1 for stack.   Return spill offset of 40 and 20.  Aligned to 16 bytes for n32.  */	.section .init,"ax",@progbits	.globl	_init	.type	_init,@function_init:#ifdef __mips64	daddu   $sp,$sp,-48	sd      $31,40($sp)#else	addu	$sp,$sp,-32	sw	$31,20($sp)#endif	.section .fini,"ax",@progbits	.globl	_fini	.type	_fini,@function_fini:#ifdef __mips64	daddu   $sp,$sp,-48	sd      $31,40($sp)#else	addu	$sp,$sp,-32	sw	$31,20($sp)#endif

⌨️ 快捷键说明

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