tahirsengine
Member level 3
Hi,
I am using ModelSim 18.1 for the simulation of my designs. Now the problem is I have some fairly obvious mistakes, and upon compile, ModelSim is skipping them and is not reporting the errors.
For example, I have a Verilog module like this:
I am instantiating this module like that:
In the port list above, e I/O is obviously not the part of original module. But ModelSim is compiling it properly.
Is there any option that I should choose to make ModelSim report errors?
I am using ModelSim 18.1 for the simulation of my designs. Now the problem is I have some fairly obvious mistakes, and upon compile, ModelSim is skipping them and is not reporting the errors.
For example, I have a Verilog module like this:
Code:
module a_module(a,b,c,d);
I am instantiating this module like that:
Code:
a_module a_module_inst( .e(...), .b(...), .c(...), .d(...));
In the port list above, e I/O is obviously not the part of original module. But ModelSim is compiling it properly.
Is there any option that I should choose to make ModelSim report errors?