crt0.s

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

S
28
字号
## arch/sh/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 2	.type _start,#function	.globl _start_start:	mov	r15, r4	mov	#0, r5	mov.l	1f, r0	jsr	@r0	 nop	.align 21:	.long	__libc_init	.size _start,.-_start

⌨️ 快捷键说明

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