-
Notifications
You must be signed in to change notification settings - Fork 0
/
riscv-hs.cabal
53 lines (49 loc) · 1.35 KB
/
riscv-hs.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
48
49
50
51
52
53
cabal-version: 3.0
name: riscv-hs
version: 0.1.0.0
-- synopsis:
-- description:
license: NONE
author: Adam Mitha, Em Chu
-- maintainer:
-- copyright:
build-type: Simple
-- extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
executable riscv-hs
import: warnings
main-is: Main.hs
other-modules: Cpu
, Memory
, Instruction
, Util
build-depends: base
, ghc
, containers
, binary
, bytestring
, vector
, elf
hs-source-dirs: src
default-language: Haskell2010
test-suite simple
type: exitcode-stdio-1.0
main-is: SimpleTest.hs
hs-source-dirs: test src
other-modules: Cpu
, Memory
, Instruction
, Util
build-depends: base
-- , riscv-hs
, containers
, vector
, directory
, split
, bytestring
, binary
, QuickCheck
default-language: Haskell2010
-- default-language: Haskell2010