📄 crt0.s
字号:
## 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -