crt0.s

来自「klibc精简化的c程序库」· S 代码 · 共 36 行

S
36
字号
## arch/s390/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#ifndef __s390x___start:	lr	%r2,%r15	lhi	%r3,0	ahi	%r15,-96	bras	%r1,.L0.L0:	l	%r1,.L1-.L0(%r1)	br	%r1.L1:	.long	__libc_init#else_start:	lgr	%r2,%r15	lghi	%r3,0	aghi	%r15,-160	jg	__libc_init#endif	.size _start,.-_start

⌨️ 快捷键说明

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