diff --git a/bayeux.cabal b/bayeux.cabal index b143ff0..77142d8 100644 --- a/bayeux.cabal +++ b/bayeux.cabal @@ -34,6 +34,7 @@ library , Bayeux.Signal , Bayeux.Tableaux , Bayeux.Uart + , Bayeux.Vector , Bayeux.Width other-modules: Paths_bayeux autogen-modules: Paths_bayeux diff --git a/lib/Bayeux/Vector.hs b/lib/Bayeux/Vector.hs new file mode 100644 index 0000000..21772c9 --- /dev/null +++ b/lib/Bayeux/Vector.hs @@ -0,0 +1,7 @@ +module Bayeux.Vector + ( VecSig(..) + ) where + +import Yosys.Rtl + +newtype VecSig n a = VecSig{ unVecSig :: SigSpec }