📄 execv.s
字号:
/ C library -- execv/ execv(file, argv);// where argv is a vector argv[0] ... argv[x], 0/ last vector element must be 0// The _exectrap flags is used by the debugger and causes/ a trace trap on the first instruction of the executed instruction/ to give a chance to set breakpoints..globl _execv, cerror.comm __exectrap,2rtt = 6_execv: mov r5,-(sp) mov sp,r5 mov 4(r5),0f mov 6(r5),0f+2 tst __exectrap beq 1f mov $170020,-(sp) / t-bit mov $1f,-(sp) rtt1: sys 0; 9f jmp cerror.data9: sys exec; 0:..; ..
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -