From 1067284cc1f6ca8ba646545c5b8d0a79cc2e41ad Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 1 Feb 2019 19:39:52 +0000 Subject: More restructuring --- src/VeriFuzz/Verilog.hs | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/VeriFuzz/Verilog.hs (limited to 'src/VeriFuzz/Verilog.hs') diff --git a/src/VeriFuzz/Verilog.hs b/src/VeriFuzz/Verilog.hs deleted file mode 100644 index 6b6a13f..0000000 --- a/src/VeriFuzz/Verilog.hs +++ /dev/null @@ -1,27 +0,0 @@ -{-| -Module : VeriFuzz.Verilog -Description : The main verilog module with the syntax and code generation. -Copyright : (c) 2018-2019, Yann Herklotz Grave -License : BSD-3 -Maintainer : ymherklotz [at] gmail [dot] com -Stability : experimental -Portability : POSIX - -The main verilog module with the syntax and code generation. --} - -module VeriFuzz.Verilog - ( -- * AST - module VeriFuzz.Verilog.AST - -- * Code Generation - , module VeriFuzz.Verilog.CodeGen - -- * Verilog mutations - , module VeriFuzz.Verilog.Mutate - , module VeriFuzz.Verilog.Helpers - ) -where - -import VeriFuzz.Verilog.AST -import VeriFuzz.Verilog.CodeGen -import VeriFuzz.Verilog.Helpers -import VeriFuzz.Verilog.Mutate -- cgit