From bf494772bad72502f3fc154f63fb7da14351df10 Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Sun, 27 Nov 2022 20:13:48 +0530 Subject: [PATCH] iverilog: update page (#9551) --- pages/common/iverilog.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pages/common/iverilog.md b/pages/common/iverilog.md index d470768a2..fa48967c1 100644 --- a/pages/common/iverilog.md +++ b/pages/common/iverilog.md @@ -1,24 +1,24 @@ # iverilog -> Preprocesses and compiles Verilog HDL (IEEE-1364) code, into executable programs for simulation. -> More information: . +> Preprocesses and compiles Verilog HDL (IEEE-1364) code into executable programs for simulation. +> More information: . - Compile a source file into an executable: -`iverilog {{source.v}} -o {{executable}}` +`iverilog {{path/to/source.v}} -o {{path/to/executable}}` -- Also display all warnings: +- Compile a source file into an executable while displaying all warnings: -`iverilog {{source.v}} -Wall -o {{executable}}` +`iverilog {{path/to/source.v}} -Wall -o {{path/to/executable}}` - Compile and run explicitly using the VVP runtime: -`iverilog -o {{executable}} -tvvp {{source.v}}` +`iverilog -o {{path/to/executable}} -tvvp {{path/to/source.v}}` - Compile using Verilog library files from a different path: -`iverilog {{source.v}} -o {{executable}} -I{{path/to/library_directory}}` +`iverilog {{path/to/source.v}} -o {{path/to/executable}} -I{{path/to/library_directory}}` - Preprocess Verilog code without compiling: -`iverilog -E {{source.v}}` +`iverilog -E {{path/to/source.v}}`