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

Simulator module.
-}

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

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