as: add Dutch translation and fix placeholders (#13376)

This commit is contained in:
Sebastiaan Speck
2024-08-13 10:24:04 +02:00
committed by GitHub
parent f6c4be8f9e
commit 1a295a5b66
11 changed files with 78 additions and 36 deletions

View File

@@ -6,16 +6,16 @@
- 汇编文件,将输出写入 a.out
`as {{文件.s}}`
`as {{路径/到/文件.s}}`
- 将输出汇编到给定文件:
`as {{文件.s}} -o {{输出.o}}`
`as {{路径/到/文件.s}} -o {{路径/到/输出.o}}`
- 通过跳过空白和注释预处理来更快地生成输出.(应该只用于受信任的编译器):
`as -f {{文件.s}}`
`as -f {{路径/到/文件.s}}`
- 在目录列表中包含一个给定路径,以搜索 .include 指令中指定的文件:
`as -I {{目标文件夹}} {{文件.s}}`
`as -I {{目标文件夹}} {{路径/到/文件.s}}`