aboutsummaryrefslogtreecommitdiffstats
path: root/app/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'app/Main.hs')
-rw-r--r--app/Main.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Main.hs b/app/Main.hs
index bec9e67..3c88e74 100644
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -197,13 +197,13 @@ getConfig :: Maybe FilePath -> IO V.Config
getConfig = maybe (return V.defaultConfig) V.parseConfigFile
handleOpts :: Opts -> IO ()
-handleOpts (Fuzz _ configF _ _) = do
+handleOpts (Fuzz out configF _ _) = do
config <- getConfig configF
_ <- V.runFuzz
[V.defaultYosysSynth, V.defaultVivadoSynth, V.defaultQuartusSynth]
[]
V.defaultYosys
- (V.fuzz (V.proceduralSrc "top" config))
+ (V.fuzzMultiple 5 (S.fromText out) (V.proceduralSrc "top" config))
return ()
handleOpts (Generate f c) = do
config <- getConfig c