Dec 26, 2004 #1 O oxford Member level 2 Joined Apr 30, 2004 Messages 47 Helped 0 Reputation 0 Reaction score 0 Trophy points 1,286 Activity points 312 psl assertions in modelsim The psl file can be simulated in the Modelsim(6.0), but how to write psl assertions in HDL file. I read the guide and it shows me like this: // psl begin // assert ** // end ------------ but when I "vlog" them, there is error message. Who can show I the example code?
psl assertions in modelsim The psl file can be simulated in the Modelsim(6.0), but how to write psl assertions in HDL file. I read the guide and it shows me like this: // psl begin // assert ** // end ------------ but when I "vlog" them, there is error message. Who can show I the example code?
Feb 19, 2007 #2 salma ali bakr Advanced Member level 3 Joined Jan 27, 2006 Messages 969 Helped 104 Reputation 206 Reaction score 21 Trophy points 1,298 Activity points 7,491 i know this reply is more than two years' late but i think it might help others for making assertions in VHDL: --psl property P1 is ..........; --psl assert P1; in Verilog: //psl property P1 = ..........; //psl assert P1; u can have properties embedded in the HDL file or in a separate one if they are embedded, there is nothing extra to write while simulating
i know this reply is more than two years' late but i think it might help others for making assertions in VHDL: --psl property P1 is ..........; --psl assert P1; in Verilog: //psl property P1 = ..........; //psl assert P1; u can have properties embedded in the HDL file or in a separate one if they are embedded, there is nothing extra to write while simulating