-
Notifications
You must be signed in to change notification settings - Fork 3
/
charm.cabal
47 lines (40 loc) · 1.81 KB
/
charm.cabal
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
Name: charm
Cabal-version: >=1.2
Version: 0.0.1
Synopsis: A reasonably complete (eventually) implementation of the ARM specification
Homepage: http://github.com/pumpkin/charm
License: BSD3
License-file: LICENSE
Author: Daniel Peebles
Maintainer: Daniel Peebles <[email protected]>
Category: Architecture
Build-type: Simple
-- Extra-source-files:
Library
Hs-source-dirs: src/
-- Modules exported by the library.
Exposed-modules: Architecture.ARM,
Architecture.ARM.Common,
Architecture.ARM.Generate,
Architecture.ARM.Pretty,
Architecture.ARM.State,
Architecture.ARM.Semantics,
Architecture.ARM.Decoder,
Architecture.ARM.Decoder.ARM,
Architecture.ARM.Decoder.Thumb,
Architecture.ARM.Instructions.UAL,
Architecture.ARM.Instructions.UAL.Semantics,
Architecture.ARM.Instructions.VFP,
Architecture.ARM.Instructions.VFP.Semantics,
Architecture.ARM.Instructions.NEON,
Architecture.ARM.Instructions.NEON.Semantics
-- Packages needed in order to build this package.
Build-depends: base == 4.*,
pretty == 1.0.*,
fclabels == 0.11.*,
containers == 0.4.*,
she == 0.3.*
-- Modules not exported by this package.
-- Other-modules:
-- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source.
-- Build-tools: