Skip to content

Commit

Permalink
XX
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Ballance <matt.ballance@gmail.com>
  • Loading branch information
mballance committed Sep 6, 2024
1 parent 80b594c commit f29be2d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/pytest_fv/tool/hdl/sim/sim_vcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@
#****************************************************************************
import os
import subprocess
from pytest_fv import HdlSim, ToolRgy, ToolKind
from pytest_fv import HdlSim, ToolRgy, ToolKind, FSConfig
from .sim_vlog_base import SimVlogBase

class SimVCS(SimVlogBase):

def __init__(self, builddir):
super().__init__(builddir)
super().__init__(builddir, FSConfig({
"systemVerilogSource", "verilogSource"}, {
"sv-uvm": True}))
pass

def build(self):
Expand Down

0 comments on commit f29be2d

Please sign in to comment.