How come you only have a very few subscriber. You are underrated man! I wish you'll keep going. Btw, thank you, just done watching the first episode. I'm a computer engineer and I sense that it is a worth watching series. :)
Hi Derek, Thank you for the clean and easy tutorial on Icarus Verilog! Are you going to cover coding style (like "Verilog Coding Standard"), Verilog-2001 features, fusesoc (libraries management, build tool), Verilator? It's really hard to find explanation how to use something more complex than MUX or 7-segment indicators.
Getting this error, how to fix it , pls tell iverilog : The term 'iverilog' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + iverilog -o hello_tb.vvp hello.v hello_tb.v + ~~~~~~~~ + CategoryInfo : ObjectNotFound: (iverilog:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
Hey Arpit! It looks like you may have made an error when you installed iverilog. This error is caused when the operating system doesn't have the 'iverilog' command in it's PATH variable.
@@josephhyatt No, I didn't. I ended up switching to ModelSim Student Edition. I got a licence key with a fake name and a disposable mobile phone and I managed to set it up. Good luck with ModelSim's hideous GUI btw. It's gonna take a lot of getting used to.
iverilog : The term 'iverilog' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. I'm having this problem , can you please help me with me it?
After instalation, when I enter in terminal "iverilog" I obtain: 'iverilog' is not recognized as an internal or external command, operable program or batch file. OS is Windows 10. I tried different versions of the program. Did you met the same problem? Thanks for the answer.
@@costanzapizzo9454 yes, in "environment variables" you need to add in path also path with \iverilog\bin . Drop me a massage on skype "zxz12m" for example if you need more help.
Hi Derek, when I use the command "iverilog -o hello_tb.vvp hello_tb.v" im getting an error "No such file or directory. No top level modules, and no -s option"
Hi Ochin, The command you have used expects to find hello_tb.v and hello.v files to be in current directory. Use Set-Location -Path "put path to directory with .v files here" in PowerShell or cd "put path to directory with .v files here" in CMD.exe or OS X/Linux/BSD shells. VSCode opens workspace directory by default. In order to open a correct directory make a right-click on filename under "OPEN EDITORS" at left and select "Open in Terminal"
@@ihanick thank you for your response. I am on Windows and I did use CMD.exe to put my path directory (cd ilverilog\bin\). I started off with even a simpler tutorial provided here www.referencedesigner.com/tutorials/verilog/verilog_02.php where we just have to compile "iverilog hello.v" (i have tried with and without -o). what I have noticed is that when I use "iverilog hello.v.txt" then only the "a.out" file is generated and I can then output ""Learning Verilog is easy with referencedesigner.com tutorial"". I'm very confused on how to fix this as I'm a newbie. I really appreciate your help
@@Ochin2011 In order to use "iverilog" command you should put X:\Full Path\iverilog\bin\ to your %PATH%. -o filename instructs icarus to save vvp script to "filename". E.g. if you have installed icarus to C:\iverilog, add C:\iverilog\bin to path. alternatively you can run set PATH="%PATH%;C:\iverilog\bin\" after each cmd.exe restart and cd c:\hdl\lesson01 (assuming that you have hello.v and hello_tb.v in c:\hdl\lesson01 ). With windows 10 windows subsystem for linux you can also forget about all this program installation hell and install icarus with sudo apt install iverilog. and of course switch to right directory with your hello_tb.v with cd.
Hi, make sure you wrote the program correctly.. I had written input instead of output for B, in the hello.v file which was causing this error for me. Hope this helps :)
I had given command iverilog -o hello_tb.vpp hello_tb.v Instead of iverilog -o hello_tb.vvp hello_tb.v After giving correct command the issue is resolved. Hope this might help you
in your testbench, be sure to use apostrophe (`) not single quote (') for the timescale and include statements. This gets a lot of people the first time.
I get this error even tho I installed Verilog correctly following each step in the video iverolog : The term 'iverolog' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1 + iverolog -o + ~~~~~~~~ + CategoryInfo : ObjectNotFound: (iverolog:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
How come you only have a very few subscriber. You are underrated man! I wish you'll keep going. Btw, thank you, just done watching the first episode. I'm a computer engineer and I sense that it is a worth watching series. :)
This is just beautiful. Simulation is synthesizing a test bench. Thank you.
Just a heads up, he is using the grave accent ` when he says apostrophe.
Very simple explanation with a good example. Thanks!!
Next time you make a video like this, add the links to the description, it would help. Thanks! :)
How come you only have a very few subscriber. You are underrated man! I wish you'll keep going. Btw, thank you, just done watching the first episode. I'm a computer engineer and I sense that it is a worth watching series. :)
Hi Derek, Thank you for the clean and easy tutorial on Icarus Verilog! Are you going to cover coding style (like "Verilog Coding Standard"), Verilog-2001 features, fusesoc (libraries management, build tool), Verilator? It's really hard to find explanation how to use something more complex than MUX or 7-segment indicators.
Thanks for such a clear explanation
Thank you derek bhai love you.
Thank you so much for explaining this!
Getting this error, how to fix it , pls tell
iverilog : The term 'iverilog' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ iverilog -o hello_tb.vvp hello.v hello_tb.v
+ ~~~~~~~~
+ CategoryInfo : ObjectNotFound: (iverilog:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Hey Arpit! It looks like you may have made an error when you installed iverilog. This error is caused when the operating system doesn't have the 'iverilog' command in it's PATH variable.
@@yelhaus I'm having this same issue. Someone help please.
@@M4comp reinstall and while reinstalling, check mark both the download gtk and ADD PATH
@@yelhaus How to fix this ? please help
ADD VERILOG BIN PATH TO ENVIRONMENT VARIABLES SECTION .
one good suggestion: Don't record the full screen. It's too small to see on TH-cam. Or please increase the font size.
Thanks for this video :)
how do we fix "no top level modules and no -s option error" shown in terminal?
hey , did u resolve ?
@@prateeksrivastava1269 I had this problem too, it turns out I just forgot the "-o" in the command
@@supersultan7374 just save the code
@@ashmt1084bro I spent 2 hours on this error. And the only thing I had to do is saving the file!!!! Anyway thank you
Excellent tutorial. Thank You ❤️
Guys the vcd file is not created after running the vvp command. Any help?
Did you ever figure this out? I'm having the same problem..
@@josephhyatt No, I didn't. I ended up switching to ModelSim Student Edition. I got a licence key with a fake name and a disposable mobile phone and I managed to set it up. Good luck with ModelSim's hideous GUI btw. It's gonna take a lot of getting used to.
it's showing the error in terminal "No top level modules, and no -s option."
check the folder in which you stored programs and then check whether its the same path shown in terminal
Same Error
@@UddhavSurve and yes, terminal is showing the folder where the programs are stored
Big help, thank you!
yeah true he's a god
@@monishmeher3901 its you Monish the real one?! I am a big fan of your vidoes!! Nice to meet you
the vcd file is not being created
half_adder.vvp: Unable to open input file.
getting this error please help
thank you very much❤❤❤
iverilog : The term 'iverilog' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify
that the path is correct and try again.
I'm having this problem , can you please help me with me it?
I installed iverilog and gtkWave on my Linux Mint. But it does not include VVP simulator. how everyone run simulation on the LInux?
It helped me a lot, Thank You
Thank you master.
After instalation, when I enter in terminal "iverilog" I obtain: 'iverilog' is not recognized as an internal or external command,
operable program or batch file. OS is Windows 10. I tried different versions of the program. Did you met the same problem? Thanks for the answer.
I was about to ask him the same question, have u found a solution?
@@costanzapizzo9454 yes, in "environment variables" you need to add in path also path with \iverilog\bin . Drop me a massage on skype "zxz12m" for example if you need more help.
@@alkac6654 oh okay thank you
i was also getting the 'No top level modules, and no -s option." and i just forgot to save before compiling/running
Same problem
what do I do when I get this "'iverilog' is not recognized as an internal or external command,
operable program or batch file."
I did all the steps till 1:08
Same error for me too
can we use it for .sv files?
It isnt creating the vcd file after the 'vvp hello_tb.vvp' step. Message not displayed either.
Can you kindly help here?
In this line in the code
hello uut(A,B);
hello and uut arent blue like yours
how to run the terminal command you wrote automatically when I run the code via vscode?
great , thanks!
Allah razı olsun abi
Thank you!
nice video, helped my a lot
Someone help, I've got a problem. The vvp file isn't getting created. And it gives me the error "Unable to open input file". What do I do?!
did u find any solution
i cant find verilog in the explorer
Can we able to work on Verilog pli in Icarus ?
How did you get the colour highlighting in your Powershell window?
I see you get iverilog in yellow and -o in grey for example.
did you add verilog to path?
amazing video
My vcd file is not opening please help
Hi Derek, when I use the command "iverilog -o hello_tb.vvp hello_tb.v" im getting an error "No such file or directory. No top level modules, and no -s option"
Hi Ochin, The command you have used expects to find hello_tb.v and hello.v files to be in current directory. Use Set-Location -Path "put path to directory with .v files here" in PowerShell or cd "put path to directory with .v files here" in CMD.exe or OS X/Linux/BSD shells. VSCode opens workspace directory by default. In order to open a correct directory make a right-click on filename under "OPEN EDITORS" at left and select "Open in Terminal"
@@ihanick thank you for your response. I am on Windows and I did use CMD.exe to put my path directory (cd ilverilog\bin\). I started off with even a simpler tutorial provided here www.referencedesigner.com/tutorials/verilog/verilog_02.php where we just have to compile "iverilog hello.v" (i have tried with and without -o). what I have noticed is that when I use "iverilog hello.v.txt" then only the "a.out" file is generated and I can then output ""Learning Verilog is easy with referencedesigner.com tutorial"". I'm very confused on how to fix this as I'm a newbie. I really appreciate your help
@@Ochin2011 In order to use "iverilog" command you should put X:\Full Path\iverilog\bin\ to your %PATH%. -o filename instructs icarus to save vvp script to "filename". E.g. if you have installed icarus to C:\iverilog, add C:\iverilog\bin to path. alternatively you can run set PATH="%PATH%;C:\iverilog\bin\" after each cmd.exe restart and cd c:\hdl\lesson01 (assuming that you have hello.v and hello_tb.v in c:\hdl\lesson01 ). With windows 10 windows subsystem for linux you can also forget about all this program installation hell and install icarus with sudo apt install iverilog. and of course switch to right directory with your hello_tb.v with cd.
Hi, make sure you wrote the program correctly.. I had written input instead of output for B, in the hello.v file which was causing this error for me. Hope this helps :)
No such file or directory
No top level modules, and no -s option.
this problem is coming up
can anyone solve this
I am also getting the same problem, do you know how to resolve it. Help much appreciated
Iam getting error and Thouse vvp file is not created in verilog folder please anybody help me with this..
mine is not compiling
thank you so much
I'm getting an error saying "unknown module type" and error during elaboration during compilation time.
yeah I had the same problem, feel you bud
great video!
hello I've got an error saying "hello_tb.vvp: Unable to open input file." How can I solve it? Please help :(
probably the file wasn't present in bin folder
I had given command
iverilog -o hello_tb.vpp hello_tb.v
Instead of
iverilog -o hello_tb.vvp hello_tb.v
After giving correct command the issue is resolved. Hope this might help you
hello_tb.v:1: syntax error
I give up
I end up with this
in your testbench, be sure to use apostrophe (`) not single quote (') for the timescale and include statements. This gets a lot of people the first time.
@@yelhaus still getting same error :/
same error
thank you
THANKS
it didn't work on my laptop.
this command: iverilog -o hello_tb.vvp hello_tb.v
gives this in the next line:
No top level modules, and no -s option.
HELP
maybe try to declare your hello_tb.v path in the command
Thanks!
what is the use of this of we have modesim
Modelsim is proprietary whereas Icarus Verilog + GTKWave is Open Source.
Thank you very much!
Time 11:11
man u left one basic thing to explain that is how setup a verilog extension
Gret
Marshall from How I Met Your Mother
I get this error even tho I installed Verilog correctly following each step in the video
iverolog : The term 'iverolog' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the
name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ iverolog -o
+ ~~~~~~~~
+ CategoryInfo : ObjectNotFound: (iverolog:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
I am facing the same issue. Did you get any solution?
PS, i tried editing environment variables
@@tarunjangir8460 bro how to edit environment variables?
"WORKING" tutorial.
둘이 헤어졌다잖아... 이런 된장..
How come you only have a very few subscriber. You are underrated man! I wish you'll keep going. Btw, thank you, just done watching the first episode. I'm a computer engineer and I sense that it is a worth watching series. :)
thank you