📄 _setpath.asm
字号:
include ..\cwlib.inc
scode
;-------------------------------------------------------------------------
;
;Set current drive and path.
;
;Calling:
;
;SetPath(buffer);
;
;On Entry:
;
;buffer - pointer to path string.
;
;On Exit:
;
;ALL registers preserved.
;
_SetPath proc syscall buffer:dword
public _SetPath
push edx
mov edx,buffer
call SetPath
pop edx
ret
_SetPath endp
efile
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -