Home › Forums › MagCAD Support › HDL Models › iNML file(.vhdl) not able to run behavioral code › Reply To: iNML file(.vhdl) not able to run behavioral code
March 28, 2018 at 3:36 pm
#1411
Umberto
Moderator
Hi Divyang,
you are right. library_pnml.vhd is not needed, the files needed for simulation are
– <circuit_name>.vhd
– library_inml.vhd
– <circuit_name>_TB.vhd
Back to your error, it seems you are writing a sort of mixed VHDL/VERILOG 🙂
Please, be careful of writing correct VHDL statement, like the one in the example of “stimuli process” in the automatically generated testbench.
in1<='0';
in2<='0';
wait for 30 ns;
Umberto