add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,24 @@
# iverilog
> 预处理并编译 Verilog HDLIEEE-1364代码为可执行程序以进行仿真。
> 更多信息:<https://github.com/steveicarus/iverilog>。
- 将源文件编译成可执行文件:
`iverilog {{path/to/source.v}} -o {{path/to/executable}}`
- 在显示所有警告的同时将源文件编译成可执行文件:
`iverilog {{path/to/source.v}} -Wall -o {{path/to/executable}}`
- 明确使用 VVP 运行时编译和运行:
`iverilog -o {{path/to/executable}} -tvvp {{path/to/source.v}}`
- 使用来自不同路径的 Verilog 库文件进行编译:
`iverilog {{path/to/source.v}} -o {{path/to/executable}} -I{{path/to/library_directory}}`
- 不进行编译而预处理 Verilog 代码:
`iverilog -E {{path/to/source.v}}`