aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Verilog/Gen.hs
diff options
context:
space:
mode:
authorYann Herklotz <git@ymhg.org>2019-04-13 12:21:05 +0100
committerYann Herklotz <git@ymhg.org>2019-04-13 12:21:05 +0100
commitb281cee59daa51ba4607229092274dfa2f801806 (patch)
tree5b8b232f593e4c2d14aaa93ea5856231f12f8623 /src/VeriFuzz/Verilog/Gen.hs
parent79a6b80ada570123e85590d484a72c810d4d8d0c (diff)
downloadverismith-b281cee59daa51ba4607229092274dfa2f801806.tar.gz
verismith-b281cee59daa51ba4607229092274dfa2f801806.zip
Fix tests passing
Diffstat (limited to 'src/VeriFuzz/Verilog/Gen.hs')
-rw-r--r--src/VeriFuzz/Verilog/Gen.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VeriFuzz/Verilog/Gen.hs b/src/VeriFuzz/Verilog/Gen.hs
index 8da4d1a..c325f66 100644
--- a/src/VeriFuzz/Verilog/Gen.hs
+++ b/src/VeriFuzz/Verilog/Gen.hs
@@ -54,7 +54,7 @@ toId = Identifier . ("w" <>) . T.pack . show
toPort :: Identifier -> Gen Port
toPort ident = do
- i <- Hog.int $ Hog.linear 0 100
+ i <- Hog.int $ Hog.linear 1 100
return $ wire i ident
sumSize :: [Port] -> Int