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

#1411
UmbertoUmberto
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