Chinese pages: correct Chinese punctuation (#5240)

This commit is contained in:
bl-ue
2021-08-02 04:41:09 -04:00
committed by GitHub
parent eaef3b4d21
commit 289e30dfb3
373 changed files with 1817 additions and 1810 deletions

View File

@@ -1,21 +1,21 @@
# as
> 一个可移植的 GUN 汇编器.
> 主要用于汇编`gcc`的输出,以供链接器`ld`使用.
> 一个可移植的 GUN 汇编器
> 主要用于汇编`gcc`的输出,以供链接器`ld`使用
> 更多信息: <https://manned.org/as>.
- 汇编一个文件,输出为 a.out:
`as {{文件.s}}`
- 汇编文件,并指定输出文件:
- 汇编文件,并指定输出文件
`as {{文件.s}} -o {{输出.o}}`
- 通过跳过空格和注释的预处理过程来更快的产生输出文件(只应该用于可信任的编译器的输出):
- 通过跳过空格和注释的预处理过程来更快的产生输出文件(只应该用于可信任的编译器的输出)
`as -f {{文件.s}}`
- 将给定路径添加到目录列表,来搜索.include 指令指定的文件:
- 将给定路径添加到目录列表,来搜索.include 指令指定的文件
`as -I {{目录路径}} {{文件.s}}`