-
Notifications
You must be signed in to change notification settings - Fork 10
/
TastierMachine.cabal
33 lines (29 loc) · 1.11 KB
/
TastierMachine.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
-- Initial TastierMachine.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: TastierMachine
version: 0.1.0.0
synopsis: A bytecoded virtual machine for teaching
-- description:
license: BSD3
license-file: LICENSE
author: Andrew Anderson
maintainer: aanderso@tcd.ie
-- copyright:
-- category:
build-type: Simple
cabal-version: >=1.8
executable tvm
main-is: TastierMachine/Main.hs
other-modules: TastierMachine.Instructions, TastierMachine.Bytecode, TastierMachine.Machine
build-depends: base, bytestring, binary, array, mtl
hs-source-dirs: src
executable tasm
main-is: TastierAssembler/Main.hs
other-modules: TastierAssembler.Parser
build-depends: base, containers, bytestring, binary, array, mtl
hs-source-dirs: src
executable tld
main-is: TastierLinker/Main.hs
other-modules: TastierMachine.Instructions
build-depends: base, bytestring, containers
hs-source-dirs: src