aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Parser.hs
blob: d46ecb6cbe0e4ab5d87ca751ecd47a0eda1cbfb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{-|
Module      : VeriFuzz.Parser
Description : Parser module for Verilog.
Copyright   : (c) 2019, Yann Herklotz Grave
License     : GPL-3
Maintainer  : ymherklotz [at] gmail [dot] com
Stability   : experimental
Portability : POSIX

Parser module for Verilog.
-}

module VeriFuzz.Parser
    ( parseVerilog
    , uncomment
    , preprocess
    )
where

import           VeriFuzz.Parser.Parser
import           VeriFuzz.Parser.Preprocess