Initial commit
This commit is contained in:
commit
c101616e62
309 changed files with 53937 additions and 0 deletions
17
bundled/Data/Memory/ExtendedWords.hs
Normal file
17
bundled/Data/Memory/ExtendedWords.hs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
-- |
|
||||
-- Module : Data.Memory.ExtendedWords
|
||||
-- License : BSD-style
|
||||
-- Maintainer : Vincent Hanquez <vincent@snarc.org>
|
||||
-- Stability : experimental
|
||||
-- Portability : unknown
|
||||
--
|
||||
-- Extra Word size
|
||||
--
|
||||
module Data.Memory.ExtendedWords
|
||||
( Word128(..)
|
||||
) where
|
||||
|
||||
import Data.Word (Word64)
|
||||
|
||||
-- | A simple Extended Word128 composed of 2 Word64
|
||||
data Word128 = Word128 !Word64 !Word64 deriving (Show, Eq)
|
||||
Loading…
Add table
Add a link
Reference in a new issue