aboutsummaryrefslogtreecommitdiffstats
path: root/src/Test/VeriFuzz/Simulator.hs
blob: 6eb01ad95ffcef8904c749ee53ff48f03f16a497 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{-|
Module      : Test.VeriFuzz.Simulator
Description : Simulator module.
Copyright   : (c) Yann Herklotz Grave 2018
License     : GPL-3
Maintainer  : ymherklotz@gmail.com
Stability   : experimental
Portability : POSIX

Simulator module.
-}

module Test.VeriFuzz.Simulator
  ( module Test.VeriFuzz.Simulator.General
  , module Test.VeriFuzz.Simulator.Yosys
  , module Test.VeriFuzz.Simulator.Xst
  , module Test.VeriFuzz.Simulator.Icarus
  ) where

import           Test.VeriFuzz.Simulator.General
import           Test.VeriFuzz.Simulator.Icarus
import           Test.VeriFuzz.Simulator.Xst
import           Test.VeriFuzz.Simulator.Yosys