-
Notifications
You must be signed in to change notification settings - Fork 4
/
mos6502-kansas-lava.cabal
105 lines (95 loc) · 3.06 KB
/
mos6502-kansas-lava.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
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
name: mos6502-kansas-lava
version: 0.0.0.0
synopsis: Implementation of the MOS 6502 microprocessor in Kansas Lava
-- description:
license: BSD3
license-file: LICENSE
copyright: (C) 2014 Gergő Érdi <gergo@erdi.hu>
author: Gergő Érdi
maintainer: Gergő Érdi <gergo@erdi.hu>
category: Hardware
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules:
MOS6502.Types
MOS6502.CPU
MOS6502.Utils
other-modules:
MOS6502.ALU
MOS6502.Decoder
build-depends:
base >=4.7 && < 5,
kansas-lava >=0.2.4 && < 0.2.5,
sized-types >=0.3,
binary-literal-qq >= 1.0 && < 1.1,
data-default
default-language: Haskell2010
other-extensions: ScopedTypeVariables, RecordWildCards, TypeFamilies, QuasiQuotes
Ghc-Options: -fwarn-unused-imports -fwarn-unused-matches
-fwarn-unused-binds -fwarn-missing-signatures
Flag simulator
description: Build standalone 6502 simulator
default: False
executable mos6502-kansas-lava
hs-source-dirs: src
main-is: MOS6502/Bench/Main.hs
other-modules:
MOS6502.Bench
MOS6502.Bench.Video
MOS6502.Bench.GTK
if !flag(simulator)
buildable: False
build-depends:
mos6502-kansas-lava,
base >=4.7 && < 5,
kansas-lava >=0.2.4 && < 0.2.5,
sized-types >=0.3,
binary-literal-qq >= 1.0 && < 1.1,
bytestring,
data-default,
gtk
default-language: Haskell2010
other-extensions: ScopedTypeVariables, RecordWildCards, TypeFamilies, QuasiQuotes
Ghc-Options:
-fwarn-unused-imports -fwarn-unused-matches
-fwarn-unused-binds -fwarn-missing-signatures
-threaded
test-suite tests
type: detailed-0.9
hs-source-dirs: tests src
test-module: MOS6502.Tests.Main
other-modules:
MOS6502.Types
MOS6502.CPU
MOS6502.ALU
MOS6502.Decoder
MOS6502.Utils
MOS6502.Tests.Framework
MOS6502.Tests.AllSuiteA
MOS6502.Tests.KlausDormann
MOS6502.Tests.KlausDormannInterrupt
MOS6502.Tests.RTSInterrupt
MOS6502.Tests
build-depends:
base >=4.7 && < 5,
kansas-lava >=0.2.4 && < 0.2.5,
sized-types >=0.3,
binary-literal-qq >= 1.0 && < 1.1,
data-default,
bytestring,
mtl,
QuickCheck >= 2.7 && < 2.8,
free >= 4 && < 5,
kan-extensions >= 4 && < 5,
cabal-test-quickcheck,
Cabal >= 1.20
default-language: Haskell2010
other-extensions: ScopedTypeVariables, RecordWildCards, TypeFamilies, QuasiQuotes
Ghc-Options: -fwarn-unused-imports -fwarn-unused-matches
-fwarn-unused-binds -fwarn-missing-signatures
source-repository head
type: git
location: git://github.com/gergoerdi/mos6502-kansas-lava