Duplicated ".spi" targets in pnrcheck designflow.

This commit is contained in:
Jean-Paul Chaput 2023-11-22 16:49:13 +01:00
parent db444314c8
commit bcdda98806
1 changed files with 1 additions and 2 deletions

View File

@ -29,8 +29,7 @@ def mkRuleSet ( callerGlobals, vlogDesignName, flags=0, extraRtlDepends=[], extr
if not (flags & NoSynthesis):
ruleYosys = Yosys .mkRule( 'yosys', vlogDesignName+'.v' )
ruleB2V = Blif2Vst.mkRule( 'b2v' , [ vhdlDesignName+'.vst'
, vlogDesignName+'.spi' ]
ruleB2V = Blif2Vst.mkRule( 'b2v' , [ vhdlDesignName+'.vst' ]
, [ruleYosys]
, flags=0 )
rtlDepends = [ ruleB2V ]