mirror of
https://github.com/myhdl/myhdl.git
synced 2024-12-14 07:44:38 +08:00
d3b17a56f2
Fixed the VPI tests for Windows
12 lines
291 B
Python
12 lines
291 B
Python
import os
|
|
|
|
from myhdl import Cosimulation
|
|
|
|
cmd = 'vsim -c -quiet -pli ../myhdl_vpi.dll -do cosim.do dut_dff'
|
|
|
|
def dff(q, d, clk, reset):
|
|
os.system('vlog -quiet ../../test/verilog/dff.v')
|
|
os.system('vlog -quiet ../../test/verilog/dut_dff.v')
|
|
|
|
return Cosimulation(cmd, **locals())
|