aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Circuit/Gen.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/VeriFuzz/Circuit/Gen.hs')
-rw-r--r--src/VeriFuzz/Circuit/Gen.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/VeriFuzz/Circuit/Gen.hs b/src/VeriFuzz/Circuit/Gen.hs
index 1e31e56..0b13ece 100644
--- a/src/VeriFuzz/Circuit/Gen.hs
+++ b/src/VeriFuzz/Circuit/Gen.hs
@@ -38,7 +38,7 @@ inputsC :: Circuit -> [Node]
inputsC c = inputs (getCircuit c)
genPortsAST :: (Circuit -> [Node]) -> Circuit -> [Port]
-genPortsAST f c = port . frNode <$> f c where port = Port Wire False 0 4
+genPortsAST f c = port . frNode <$> f c where port = Port Wire False 4
-- | Generates the nested expression AST, so that it can then generate the
-- assignment expressions.
@@ -73,7 +73,7 @@ genModuleDeclAST c = ModDecl i output ports (combineAssigns yPort a) []
ports = genPortsAST inputsC c
output = []
a = genAssignAST c
- yPort = Port Wire False 0 90 "y"
+ yPort = Port Wire False 90 "y"
generateAST :: Circuit -> Verilog
generateAST c = Verilog [genModuleDeclAST c]