crt0.s
来自「klibc精简化的c程序库」· S 代码 · 共 24 行
S
24 行
## arch/ppc/crt0.S# .text .align 4 .type _start,@function .globl _start_start: stwu 1,-16(1) addi 3,1,16 /* * the SVR4abippc.pdf specifies r7 as a pointer to * a termination function point * However, Section 8.4.1 of the LSB API docs say that * The value to be placed into register r7, the termination * function pointer, is not passed to the process. * So we stub it out, instead. */ li 4,0 bl __libc_init .size _start,.-_start
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?