ldalias.gml
来自「开放源码的编译器open watcom 1.6.0版的源代码」· GML 代码 · 共 33 行
GML
33 行
.*
.*
.dirctv ALIAS
.*
.np
The "ALIAS" directive is used to specify an equivalent name for a symbol name.
The format of the "ALIAS" directive (short form "A") is as follows.
.mbigbox
ALIAS alias_name=symbol_name{, alias_name=symbol_name}
.embigbox
.synote
.mnote alias_name
is the alias name.
.mnote symbol_name
is the symbol name to which the alias name is mapped.
.esynote
.np
Consider the following example.
.millust begin
alias sine=mysine
.millust end
.np
When the linker tries to resolve the reference to
.id sine
.ct ,
it will immediately substitute the name
.id mysine
for
.id sine
and begin searching for the symbol
.id mysine
.ct .li .
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?