X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fmaster-project%2Fc%CE%BBash.git;a=blobdiff_plain;f=Bits.hs;h=558a12b1f24b5b7465baecda7cc402eeabd84c30;hp=b50430af9644553c657e6d6bb5ff5f95e1d69ad8;hb=3f39038911a675d91b5147761e16296d3ab25743;hpb=8a17f35807fb35ee4d2a4c35c75e1cf99066f94d diff --git a/Bits.hs b/Bits.hs index b50430a..558a12b 100644 --- a/Bits.hs +++ b/Bits.hs @@ -1,9 +1,12 @@ -{-# LANGUAGE FlexibleContexts,GADTs,ExistentialQuantification,LiberalTypeSynonyms #-} +{-# LANGUAGE FlexibleContexts,GADTs,ExistentialQuantification,LiberalTypeSynonyms,TemplateHaskell, DeriveDataTypeable #-} module Bits where -import qualified Data.Param.TFVec as TFVec -import qualified Types +-- import qualified Data.Param.TFVec as TFVec +-- import qualified Types +import Language.Haskell.TH.Lift + +import Data.Typeable --class Signal a where -- hwand :: a -> a -> a @@ -44,20 +47,22 @@ displaysig Low = "0" -- The plain Bit type data Bit = High | Low - deriving (Show, Eq, Read) + deriving (Show, Eq, Read, Typeable) + +$(deriveLift1 ''Bit) -- A function to prettyprint a bitvector --displaysigs :: (Signal s) => [s] -> String -displaysigs :: [Bit] -> String -displaysigs = (foldl (++) "") . (map displaysig) +-- displaysigs :: [Bit] -> String +-- displaysigs = (foldl (++) "") . (map displaysig) -type Stream a = [a] +-- type Stream a = [a] -- An infinite streams of highs or lows -lows = Low : lows -highs = High : highs - -type BitVec len = TFVec.TFVec len Bit +-- lows = Low : lows +-- highs = High : highs +-- +-- type BitVec len = TFVec.TFVec len Bit -- vim: set ts=8 sw=2 sts=2 expandtab: