packages feed

clash-prelude 0.6 → 0.6.0.1

raw patch · 3 files changed

+27/−1 lines, 3 files

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Changelog for [`clash-prelude` package](http://hackage.haskell.org/package/clash-prelude) +## 0.6.0.1 *November 17th 2014*+* Fixes bugs:+  * Add missing 'CLaSH.Sized.BitVector' module to .cabal file.+ ## 0.6 *November 17th 2014*  * New features:
clash-prelude.cabal view
@@ -1,5 +1,5 @@ Name:                 clash-prelude-Version:              0.6+Version:              0.6.0.1 Synopsis:             CAES Language for Synchronous Hardware - Prelude library Description:   CλaSH (pronounced ‘clash’) is a functional hardware description language that@@ -74,6 +74,7 @@                       CLaSH.Signal.Explicit                       CLaSH.Signal.Internal +                      CLaSH.Sized.BitVector                       CLaSH.Sized.Fixed                       CLaSH.Sized.Index                       CLaSH.Sized.Signed
+ src/CLaSH/Sized/BitVector.hs view
@@ -0,0 +1,21 @@+{-# LANGUAGE MagicHash #-}++module CLaSH.Sized.BitVector+  ( -- * Datatypes+    BitVector+  , Bit+    -- * Accessors+    -- ** Length information+  , size#+  , maxIndex#+    -- * Construction+    -- ** Initialisation+  , high+  , low+  , bLit+    -- ** Concatenation+  , (++#)+  )+where++import CLaSH.Sized.Internal.BitVector