-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.yaml
111 lines (94 loc) · 2.41 KB
/
package.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: retroclash-lib
version: 0.1.2.2
category: Hardware
synopsis: Code shared across the code samples in the book "Retrocomputing with Clash"
description: |
Clash components useful when implementing, or interfacing with,
retro-computers:
* UART
* Multi-digit seven-segment display driver
* Keypad matrix scanner
* PS/2 keyboard driver
* VGA signal generator
* Video coordinate transformers
* A framework for monadic CPU descriptions
* Address maps
* Various small utilities
homepage: https://unsafePerform.IO/retroclash/
github: gergoerdi/retroclash-lib
license: MIT
author: Gergő Érdi
maintainer: [email protected]
copyright: 2021 Gergő Érdi
dependencies:
- base >= 4.14 && < 5
- clash-prelude >= 1.4.2 && < 2.0
- clash-lib >= 1.4.2 && < 2.0
- clash-ghc >= 1.4.2 && < 2.0
- ghc-typelits-natnormalise
- ghc-typelits-extra
- ghc-typelits-knownnat
- mtl
- transformers
- barbies ^>= 2.0.1
- lens
- containers
- template-haskell
- th-orphans >= 0.13.11
- lift-type ^>= 0.1
- monoidal-containers ^>= 0.6
source-dirs:
- src
ghc-options:
-fexpose-all-unfoldings -fno-worker-wrapper
-fplugin GHC.TypeLits.KnownNat.Solver
-fplugin GHC.TypeLits.Normalise
-fplugin GHC.TypeLits.Extra.Solver
# Anything that Clash uses by default should go here
default-extensions:
- BinaryLiterals
- ConstraintKinds
- DataKinds
- DeriveAnyClass
- DeriveGeneric
- DeriveLift
- DerivingStrategies
- ExplicitForAll
- ExplicitNamespaces
- FlexibleContexts
- FlexibleInstances
- KindSignatures
- MagicHash
- MonoLocalBinds
- NoImplicitPrelude
- NoMonomorphismRestriction
- NoStarIsType
- NoStrictData
- NoStrict
- QuasiQuotes
- ScopedTypeVariables
- TemplateHaskellQuotes
- TemplateHaskell
- TypeApplications
- TypeFamilies
- TypeOperators
library:
exposed-modules:
- RetroClash.Utils
- RetroClash.Clock
- RetroClash.Barbies
- RetroClash.Keypad
- RetroClash.SevenSegment
- RetroClash.SerialRx
- RetroClash.SerialTx
- RetroClash.I2C
- RetroClash.VGA
- RetroClash.Video
- RetroClash.CPU
- RetroClash.Delayed
- RetroClash.Stack
- RetroClash.BCD
- RetroClash.Port
- RetroClash.PS2
- RetroClash.PS2.ASCII
- RetroClash.Memory