Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stack support #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
91 changes: 91 additions & 0 deletions RISCV-ISA-Spec.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 13bb80c1deab0f9f434a3c7f52252b685bb40d63ddcc23372586cdb90aa401c2

name: RISCV-ISA-Spec
version: 0.1.0.0
description: Please see the README on Github at <https://github.com/rsnikhil/RISCV-ISA-Spec#readme>
homepage: https://github.com/rsnikhil/RISCV-ISA-Spec#readme
bug-reports: https://github.com/rsnikhil/RISCV-ISA-Spec/issues
author: Rishiyur S. Nikhil
maintainer: nikhil@bluespec.com
copyright: 2018 RISC-V Foundation, MIT, Rishiyur S. Nikhil, Bluespec, Inc.
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
README.md

source-repository head
type: git
location: https://github.com/rsnikhil/RISCV-ISA-Spec

library
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, bytestring >=0.10 && <0.11
, containers >=0.5 && <0.6
, elf >=0.28
exposed-modules:
Address_Map
Arch_Defs
Bit_Manipulation
CSR_File
Elf
Forvis_Spec
GPR_File
Machine_State
Main
Main_Run_Program
Main_Tandem_Verifier
Main_Test_Virtual_Mem
Mem_Ops
Memory
MMIO
Read_Hex_File
Run_Program
UART
Virtual_Mem
other-modules:
Paths_RISCV_ISA_Spec
default-language: Haskell2010

executable RISCV-ISA-Spec-exe
main-is: Main.hs
other-modules:
Address_Map
Arch_Defs
Bit_Manipulation
CSR_File
Elf
Forvis_Spec
GPR_File
MMIO
Machine_State
Main
Main_Run_Program
Main_Tandem_Verifier
Main_Test_Virtual_Mem
Mem_Ops
Memory
Paths_RISCV_ISA_Spec
Read_Hex_File
Run_Program
UART
Virtual_Mem
hs-source-dirs:
src
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
RISCV-ISA-Spec
, base >=4.7 && <5
, bytestring >=0.10 && <0.11
, containers >=0.5 && <0.6
, elf >=0.28
default-language: Haskell2010
3 changes: 3 additions & 0 deletions stack.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
resolver: lts-9.10
extra-deps:
- elf-0.29