⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crt0.s

📁 klibc精简化的c程序库
💻 S
字号:
## arch/i386/crt0.S## Does arch-specific initialization and invokes __libc_init# with the appropriate arguments.## See __static_init.c or __shared_init.c for the expected# arguments.#	.text	.align 4	.type _start,@function	.globl _start_start:	# Save the address of the ELF argument array	movl %esp,%eax		# Address of ELF arguments	# Set up a faux stack frame for the benefit of gdb	xorl %ebp,%ebp	push %ebp		# Keep gdb from getting confused	push %ebp		# Keep gdb from getting confused	# Push the arguments and called __libc_init()#ifndef _REGPARM	push %edx		# atexit() function	push %eax		# ELF array#endif	call __libc_init	# If __libc_init returns, problem...	hlt	.size _start, .-_start

⌨️ 快捷键说明

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